为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用外部“ .js”文件

如何使用外部“ .js”文件

POPMUISE 2019-12-02 10:47:50
我有以下两个javascript函数:1个showCountry()2showUser()我想将它们放在外部“ .js”文件中1个<a href="javascript:showCountry('countryCode')">countryCode</a>2<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>调用这些函数的正确语法是什么?
查看完整描述

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>

希望对您有帮助。...谢谢


查看完整回答
反对 回复 2019-12-02
?
Cats萌萌

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"; 

            }


查看完整回答
反对 回复 2019-12-02
?
拉风的咖菲猫

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


查看完整回答
反对 回复 2019-12-02
  • 3 回答
  • 0 关注
  • 595 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信