我寫了刷新效果,怎么點(diǎn)擊按鈕后按鈕就消失了!
<script type="text/javascript">
function time(){
?var mydate=new Date();
? document.write("當(dāng)前時間:"+mydate+"<br>");
? mydate.setTime( mydate.getTime()? + 2* 60 * 60 * 1000);
? document.write("推遲二小時時間:" + mydate);
}
?time()
</script>
</head>
<body>
<div>
<input type='button' value='刷新' onclick='time()'/>? ?
</div>
</body>
2016-04-08
之前就遇到過這個問題?。?!
document.write("當(dāng)前時間:"+mydate+"<br>"); ? ? js中的這個語句,會覆蓋html頁面的內(nèi)容。不管頁面內(nèi)容是文字,還是按鈕,一旦js中出現(xiàn)這個語句,都會覆蓋頁面內(nèi)容。
2016-04-05
你的代碼出錯了。我標(biāo)出來了。
<script type="text/javascript">
function time(){
?var mydate=new Date();
? document.write("當(dāng)前時間:"+mydate+"<br>");
? mydate.setTime( mydate.getTime()? + 2* 60 * 60 * 1000);
? document.write("推遲二小時時間:" + mydate);
}
?time()(這里錯了,語法錯誤,后面就無法執(zhí)行了)
</script>
</head>
<body>
<div>
<input type='button' value='刷新' onclick='time()'/>? ?
</div>
</body>
2016-03-25
你的函數(shù)名不能用time,使用關(guān)鍵字做函數(shù)名回出現(xiàn)錯誤
2016-03-25
If you annotate the function of time(), ?maybe your button will not disappear.
2016-03-25
函數(shù)調(diào)用后就切換了頁面,并不是你的按鈕消失了