正常的在js文件中写一个函数
function test1(){
alert("这样是调用不到的");
}
只有这样声明才能调用到
test=function(){
alert("可以调用");
}
然后在 html 页面中
<script>
test(); 这样就调用成功了
</script>
html页面调用js文件里的函数,写法必须为test= function (){}形式,其他方式写无用。
原文地址:https://www.cnblogs.com/outianfu/p/9658534.html
时间: 2024-10-16 17:59:36