Twenty-three, JavaScript event of html

A, as follows

Second, the effect is as follows

Third, after clicking

<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<body>
<h1>我的第一张网页</h1>

<p id="demo"></p>

<button onclick = "document.getElementById('demo').innerHTML=Date();"> 按钮1 </button>

<button onclick = "this.innerHTML=Date()"> 按钮2 </button>

<script> </script>

</body>
</html>

 

Guess you like

Origin www.cnblogs.com/tianpan2019/p/11314672.html