在之前學(xué)習(xí)過DOM內(nèi)容后腹泌,也寫了不少總結(jié)钉嘹,在很多地方都會(huì)用到一睁,今天就用一個(gè)比較簡單的例子來體驗(yàn)一下DOM帶來的效果
Html:
<div id="box">
<input id="inp1" type="text">
<input id="inp2" type="text">
<input id="btn1" type="button" value="查找">
<input id="btn2" type="button" value="替換">
<p id="txt">[行程特色] 長沙國家長沙公園與一脈相連的索溪峪歧蕉、天子山兩大自然保護(hù)區(qū)組成武陵源报嵌, 是長沙的核心景區(qū)迹炼。長沙钓试,奇峰三千椅亚,秀水八百源武,長沙的山大多是拔地而起山扼褪, 山上峰峻石奇,或玲瓏秀麗粱栖,或崢嶸可怖话浇,或平展...</p>
</div>
css:
*{margin:0;padding:0;
}
body,ul,li,ol,dl,dd,p,h1,h2,h3,h4,h5,h6{ margin:0;
}
a{
text-decoration:none;
}
img{
border:none;
}
ol,ul{
list-style:none;
}
#box{
margin: 50px auto;
padding: 10px;
width: 500px;
height:200px;
border: 1px dotted #333;
}
#box span{
font-size: 18px;
color: red;
font-weight: bold;
}
#box p{
margin-top: 10px;
line-height: 30px;
font-size: 14px;
text-indent: 2em;
}
js:
var oInp1 = document.getElementById("inp1"),
oInp2 = document.getElementById("inp2"),
oBtn1 = document.getElementById("btn1"),
oBtn2 = document.getElementById("btn2"),
oTxt = document.getElementById("txt"),
txtHTML = oTxt.innerHTML;
oBtn1.onclick = function (){
var val = oInp1.value;
var arr = txtHTML.split(val);
//console.log(arr);
oTxt.innerHTML = arr.join("<span>"+val+"</span>");
};
oBtn2.onclick = function (){
var val1 = oInp1.value;
var val2 = oInp2.value;
if(val1){
var arr = txtHTML.split(val1);
oTxt.innerHTML = arr.join("<span>"+val2+"</span>");
txtHTML = arr.join(val2);
};
};
HTML與CSS在這個(gè)部分中不是重點(diǎn),只需創(chuàng)建一段簡要文字闹究,以及可以輸入文字的文本框即可幔崖,這里用到了之前 DOM的內(nèi)容,獲取標(biāo)簽id并進(jìn)行替換渣淤。這只是對Dom的簡單應(yīng)用赏寇,在實(shí)際的項(xiàng)目中,靈活的運(yùn)用DOM部分的內(nèi)容价认,會(huì)對界面產(chǎn)生更加完整的效果嗅定。