W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
注意:find()方法是非標(biāo)準(zhǔn)的,不要在面向Web的生產(chǎn)站點(diǎn)上使用它:它不適用于每個(gè)用戶(hù)。實(shí)現(xiàn)之間可能存在很大的不兼容性,并且行為可能在將來(lái)發(fā)生變化。
注意:window.find()對(duì)Gecko未來(lái)版本的支持可能會(huì)有所改變。
find()方法可以在window中查找字符串。
window .find(aString,aCaseSensitive,aBackwards,aWrapAround,
aWholeWord,aSearchInFrames,aShowDialog);
如果找到了字符串,則返回true;否則,返回false。
findString = function findText(text) {
alert("String \x22" + text + "\x22 found? " + window.find(text));
}
<p>Apples, Bananas, and Oranges.</p>
<button type="button" onClick='findString("Apples")'>Search for Apples</button>
<button type="button" onClick='findString("Banana")'>Search for Banana</button>
<button type="button" onClick='findString("Orange")'>Search for Orange</button>
Window.find()選擇在站點(diǎn)上找到的內(nèi)容。
這不是任何規(guī)范的一部分。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: