久艹网,亚洲一日韩欧美中文字幕2019,国产欧美日韩精品专区黑人,一区二区三区久久99

中山php|最優(yōu)網(wǎng)絡(luò)中山做網(wǎng)站 中山php建站

最優(yōu)良人

Posts Tagged With: javascript

常用JS語(yǔ)句

2011/08/14 at 01:20 » Comments (277)

//顯示與隱藏 document.getElementById('s1').style.display=''; //js返回上次頁(yè)面 window.history.back(); history.go(-2); //隔一段時(shí)間執(zhí)行一次函數(shù) intervalID = setInterval("showTime()", 5000); //延遲一段時(shí)間執(zhí)行函數(shù) timeoutID = setTimeout("showTime()", 5000); // 停止: 主要是利用 window.clearInterval(intervalID); window.clearTimeout(timeoutID); //表單提交 name.submit()或者javascript:this.submit()(必須處在form表單內(nèi)) //取得id document.getElementById("bbac").value more »