12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <h1>hello</h1>
- <h1>world</h1>
- <script>
- var oH1 = document.getElementsByTagName("h1");
- // 鼠标点击事件(单击)
- oH1[0].onclick = function(){
- // console.log("hello world")
- // oH1[0].innerText = "你好";
- this.innerText = "hello world";
- }
- var oBody = document.getElementsByTagName("body")[0];
- oBody.oncontextmenu = function(){
- console.log("hello");
- return false;
- }
- </script>
- </body>
- </html>
|