怎么引入(调用)一个JS文件
怎么引入(调用)一个JS文件
发布时间:2016-12-30 来源:查字典编辑
摘要:我们旺旺需要调用别的js文件。怎么处理?看随机抽取这个例子。在一个页面中如下:randomnumber//随机抽取人名我们可以把js放在另外...

我们旺旺需要调用别的 js文件。怎么处理?

看随机抽取这个例子。在一个页面中如下:

<html> <head> <title>random number</title> <script type="text/javascript"> //随机抽取人名 </script> </head> <body> <form> <input type="button" value="Start"> <input type="button" value="Stop"> </form> <br> <font color="blue" id="num"></font> <br> </body> </html>

我们可以把 js 放在另外一个文件里,比如当前文件夹的 a.js 中。

这样 html 页面如下:

<html> <head> <title>random number</title> <script type="text/javascript" src="a.js"> </script> </head> <body> <form> <input type="button" value="Start"> <input type="button" value="Stop"> </form> <br> <font color="blue" id="num"></font> <br> </body> </html>

a.js

var errorString = "Please input a positive integer."; var arr = ["A", "B", "C", "D"]; function count() { max = arr.length; //max, 全局变量 document.getElementById("num").innerHTML = arr[parseInt(max * Math.random())]; } function start() { timeId = setInterval("count();", 100); } function stop() { clearInterval(timeId); }

这样就行了。

当然,也可以把 a.js放在web上,然后引用成下面这样。

<html> <head> <title>random number</title> <script type="text/javascript" src="http://localhost:8080/test/js/random1.js"></script> </head> <body> <form> <input type="button" value="Start"> <input type="button" value="Stop"> </form> <br> <font color="blue" id="num"></font> <br> </body> </html>

以上所述是小编给大家介绍的引入(调用)一个JS文件的方法,希望对大家有所帮助,如果大家有任何疑问请给我们留言,小编会及时回复大家的。在此也非常感谢大家对查字典教程网的支持

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类