|| document.documentElement.clientWidth
|| document.body.clientWidth;
原來宣告變數也能用 or 表示
----
<body>
<p>A script on this page starts this clock:</p>
<p id="demo"></p>
<button onclick="clearInterval(myVar)">Stop time</button>
<script>
var myVar = setInterval(myTimer ,1000);
function myTimer() {
var d = new Date();
document.getElementById("demo").innerHTML = d.toLocaleTimeString();
}
</script>
</body>
覺得這個計時器、停止時間按鈕的範例很重要,先記下來
----
沒有留言:
張貼留言