3 回答
TA贡献1824条经验 获得超8个赞
像这样的代码
<html>
<head>
<script type="text/javascript" src="path/to/script.js"></script>
<!--other script and also external css included over here-->
</head>
<body>
<form>
<select name="users" onChange="showUser(this.value)">
<option value="1">Tom</option>
<option value="2">Bob</option>
<option value="3">Joe</option>
</select>
</form>
</body>
</html>
希望对您有帮助。...谢谢
TA贡献1805条经验 获得超9个赞
注意:-不要在外部JavaScript文件中使用脚本标签。
<html>
<head>
</head>
<body>
<p id="cn"> Click on the button to change the light button</p>
<button type="button" onclick="changefont()">Click</button>
<script src="external.js"></script>
</body>
外部Java脚本文件:-
function changefont()
{
var x = document.getElementById("cn");
x.style.fontSize = "25px";
x.style.color = "red";
}
TA贡献1995条经验 获得超2个赞
这是将外部javascript文件包含到HTML标记中的方法。
<script type="text/javascript" src="/js/external-javascript.js"></script>
external-javascript.js外部文件要包含在哪里。包含路径和文件名时,请确保其正确。
<a href="javascript:showCountry('countryCode')">countryCode</a>
上面提到的方法对于锚标记是正确的,并且可以完美地工作。但是对于其他元素,您应该明确指定事件。
例:
<select name="users" onChange="showUser(this.value)">
谢谢,XmindZ
添加回答
举报