① html如何調用外部js中得方法
需要准備的材料分別有:電腦、html編輯器、瀏覽器。
1、首先,打開html編輯器,新建html文件,例如:index.html,引用外部js,例如index.js。
② 在html文檔中使用javascript腳本有哪3種方法
最常見是這種:
在任何地方,用<script type="text/javascript">開頭,及</script>結束
javascript 指令寫在其中。
<html>
<body>
<script type="text/javascript">
alert("hi")
</script>
網頁內容
</body>
</html>
~~~~~~~~~~~~~~~~~~~~~~~~
其次是簡單的一個,或兩三個指令直接寫在物件標簽內。
<html>
<body>
<div style="background-color:cyan; width:500px; height:200px;" onmouseover="alert('你好!'); alert('歡迎你來!')">
</div>
</body>
</html>
~~~~~~~~~~~~~~~~~~~~~~~
較少見是這種,一連串指令寫在物件標簽內。
<html>
<body>
<div style="background-color:cyan; width:500px; height:200px;" onmouseover="
var d = new Date()
d= '日一二三四五六'.charAt(d.getDay())
alert( '今天是星期' + d)
">
Hi
</div>
</body>
</html>
~~~~~~~~~~~~~~~~~~
你將以上三種存成獨立的 x.htm 文件,用ie或firefox試試,後二種用mouseover 就會觸發 javascript 程式。
③ HTML中怎麼引用JS
1、通過使用html標簽的style屬性來寫。通過這種方式寫的樣式會覆蓋掉其他引入方式的樣式。優先選擇行內樣式。缺點是不利於後期維護,如果一個頁面寫太多行內樣式,也會讓頁面看著比較亂。
④ 怎麼在html文件中調用js文件
1、將這一段代碼保存到一個文件中。
⑤ html 如何運行js
html運行JS的方式有:
通過引入外部的JS文件來調用,一般將JS寫在一個外部文件中,封裝起來,然後在調用,舉個實例:
<html>
<head>
<style>
#div1{
width:460px;
height:200px;
position:absolute;
}
</style>
</head>
<script type='text/javascript' src='js文件的地址'></script>
<body>
<div id='div1'>
<p>我是測試文字</p>
</div>
2.在Js中通過<script></script>這個標簽,將JS寫在裡面也是可以的,請看代碼:
<html>
<head>
<style>
#div1{
width:460px;
height:200px;
position:absolute;
}
</style>
<script>
var oDiv = document.getElementById('div1')
var Let = Div.style.left; //上下的值,
var Rig = Div.style.top;
</script>
</head>
<body>
<div id='div1'>
<p>我是測試文字</p>
</div>
</body>
</html>