怎样在⽹页中嵌⼊JS代码有四种⽅法:
⽅法1: 在<script>标签内直接写代码
<body>
<button id="btn">click</button>
<script>
网页代码中的单标签alert("click");
}
</script>
</body>
⽅法2: 在使⽤<script>标签的src属性引⼊外部js⽂件
/
/ test.js
// ElementById("btn").onclick = function(){ alert("hello") };
// test.html
<body>
<button id="btn">click</button>
<script src="./test.js">
因为src引⼊了外部⽂件, 因此写在标签中的代码不会执⾏.
</script>
</body>
⽅法3: 通过事件属性
<body>
<input type="text" onblur="alert(this.value)"/>
</body>
⽅法4: 使⽤URL协议
<body>
<a href="javascript:alert('hello')">click</a>
</body>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论