外部javascript怎么写

外部javascript怎么写,第1张

就是创建个js文件

里面写上你需要的方法什么的,和写在html的一样

function (){

}

然后再html里连接上就行了

<script src="文件路径"></script>

//JS文件内容:

var mySelect=new mSelect('mySelect','images/mSelect.css')

window.onload=function(){

var aS=document.getElementsByTagName('select')

for (var i=0i<aS.lengthi++){

switch(aS[i].getAttribute('mSty')){

case 'redLine':

mySelect.Create(aS[i],'redLine')

break

case 'blueCircle':

mySelect.Create(aS[i],'blueCircle',true)

break

case 'orangeHeart':

mySelect.Create(aS[i],'orangeHeart',true)

break

}

}

}

//网页调用

<script type="text/javascript" src="scripts/mSelect.js"></script>

需要准备的材料分别有:电脑、html编辑器、浏览器。

1、首先,打开html编辑器,新建html文件,例如:index.html,填充问题基础代码。

2、在index.js中,实现func1和func2函数

3、在index.html中,新增第3个button,并调用func3()方法,并在<script>标签中输入js代码:

function func3() {

$('body').append('use func3<br/>')

}

4、浏览器运行index.html页面,此时点击“函数3”按钮,能正常执行func3函数来输出内容。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/6081985.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-14
下一篇 2023-03-14

发表评论

登录后才能评论

评论列表(0条)

保存