小箩莉末发育娇小性色xxxx,精品无码久久久久久久久水蜜桃,精品国产污污免费网站入口,中文在线а天堂中文在线新版

中山php|最優網絡中山做網站 中山php建站

最優良人

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); //隔一段時間執行一次函數 intervalID = setInterval("showTime()", 5000); //延遲一段時間執行函數 timeoutID = setTimeout("showTime()", 5000); // 停止: 主要是利用 window.clearInterval(intervalID); window.clearTimeout(timeoutID); //表單提交 name.submit()或者javascript:this.submit()(必須處在form表單內) //取得id document.getElementById("bbac").value more »