就是如何設置一個參數,讓document.write的內容只顯示2秒。謝謝。
document.write不行,通過dom節點進行,例子如下
<!DOCTYPE html>
<html>
<body>
<div id='showdiv'></div>
</body>
<script>
document.getElementById('showdiv').innerHTML='顯示2秒';
setTimeout("document.getElementById('showdiv').innerHTML='';",2000);
</script>
</html>