innerText、innerHTML

來源:互聯網
上載者:User

標籤:間隔   有獎   刪除   sel   接受   driver   資料類型   innertext   rem   

innerTest
修改的是標籤的常值內容,如果修改的字串具有標籤的格式,不會把標籤展示到頁面中

innerHtml
列印標籤中所有子標籤 以字串的形式,如果修改的字串有標籤的格式,則直接展示到頁面中

select 操作
通過value
一定是option中value屬性對應的值

selectedindex 通過角標進行修改
展開select標籤,從上到下 依次定位 0 - n

 

css
1、標籤中
2、head標籤中link
3、head中style
.c1{
    height:1px;
    wid;;xxxx
}
.c2{}

常用 class
<div class=‘c1 c2‘></div>
id
<div id=‘i1‘></div>

ClassName
擷取標籤class屬性 字串類型 修改時 通過空格間隔css選取器

建立標籤
子標籤後面
div.insertAdjacentHTML(‘beforeEnd‘,str)
子標籤前面
div.insertAdjacentHTML(‘afterBegin‘,str)
擷取標籤前面
div.insertAdjacentHTML(‘beforeBegin‘,str)
擷取標籤後面
div.insertAdjacentHTML(‘afterEnd‘,str)

刪除
1、innerHTML
2、eleobj.removeChild(child) 形參接受子標籤對象

重新整理
location.href = location.href
location.reload()



 ==  和 === 區別
 ==只會校正值是否相同 不校正資料類型

 === 既校正資料類型也校正值


 迴圈
 這種迴圈支援數組 和  字典
var list = [‘dsx‘,‘nn‘];
var dict = {"name":"dsx","age":"18"};
for (var i in dict){
    console.log(i)
}

這種不支援字典的迴圈
for (var i=0;i<3;i++){
        console.log(list[i])
    }

作業:
    完善抽獎頁面的js
    註冊
    登入
    抽獎
    查看中獎紀錄
    查看所有獎品資訊

xpath
//* 代表擷取全部元素
@ 後面接屬性名稱
//*[@id=‘i1‘]
屬性定位
只要是標籤中的屬性 就可以通過@進行定位
通過標籤中任意唯一屬性 進行定位
//*[@placeholder=‘請通過ID定位元素‘]

通過tagname進行範圍縮減
//input[@placeholder=‘請通過ID定位元素‘]

同時多屬性定位
//input[@class=‘classname‘ and @placeholder=‘請通過CLASSNAME定位元素‘]


如果 通過css selector必須使用角標進行定位則可以選擇使用xpath 因為css selector不支援角標定位


1、Firefox瀏覽器的     firebug firepath
2、python安裝selenium
3、下載Firefox、Google 、ie驅動並調通
from selenium import webdriver
driver = webdriver.Chrome()
driver.get(‘http://ui.imdsx.cn‘)

innerText、innerHTML

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.