博學(xué)谷HTML&JS + 前端高手課2023版
JavaScript和HTML的結(jié)合
第一種:使用一個標(biāo)簽
<? ?script type="text/javascript">js的代碼</script>
舉例如下:
<script type="text/javascript">
? ? ? ? ? //向頁面彈出一個框,顯示內(nèi)容。
? ? ? ? ? alert("xiaomanhua"); ? ? ? </script>
運行結(jié)果如下:

第二種結(jié)合方式:使用JavaScript標(biāo)簽,引入一個外部的js文件
<body>
? ? ? ?<script type="text/javascript" src="1.js">
? ? ? ? ? ?
? ? ? ? ? ?
? ? ? ?</script>
? ?</body>
標(biāo)簽: