中山php|最優(yōu)網絡 :中山做網站 中山php建站
最優(yōu)良人
Posts Tagged With: javascript
常用JS語句
2011/08/14 at 01:20 » Comments (277)
//顯示與隱藏 document.getElementById('s1').style.display=''; //js返回上次頁面 window.history.back(); history.go(-2); //隔一段時間執(zhí)行一次函數 intervalID = setInterval("showTime()", 5000); //延遲一段時間執(zhí)行函數 timeoutID = setTimeout("showTime()", 5000); // 停止: 主要是利用 window.clearInterval(intervalID); window.clearTimeout(timeoutID); //表單提交 name.submit()或者javascript:this.submit()(必須處在form表單內) //取得id document.getElementById("bbac").value more »