HTML引入JS

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>JS</title>
</head>
<body>


<!--引入外部JS-->
<script src="0717.js" type="text/javascript"></script>


<!--
在script中  内部代码在页面打开执行
 可以写多个 没有位置限制
<script type="text/javascript">
    alert("HEllo 1");
    alert("HEllo 12");
    alert("HEllo 3");
</script>
-->








<!--
//点击弹窗
<input type="button" value="hello" οnclick="window.alert(555555)" >
<input type="button" value="hello"
       οnclick="window.alert('55asdada')
              window.alert('56456dada')
              window.alert('6464a')
              alert('44444')
">
-->

</body>
</html>
//命名为0717
alert("HEllo 1");
alert("HEllo 12");
alert("HEllo 3");

猜你喜欢

转载自blog.csdn.net/m0_46381590/article/details/118861296