html调用js文件里面的参数

html调用js文件里面的参数,第1张

swf.js里写

var swfDomain='http://www.xxx.com'

然后html写

<script>

document.write('<object id="flashgame" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="650" height="516"><param name="movie" value="'+swfDomain+'/flash/12955.swf"> <param name="quality" value="high" /> <embed src="'+swfDomain+'地方/flash/12955.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="650" height="516"></embed> </object>

')

</script>

html中调用javascript函数基本有两种方法:

通过元素的事件来调用javascript函数

<html>

<head>

<title>javascript函数调用</title>

</head>

<body>

<button onclick="demo()">点击调用demo函数</button>

<script>

function demo()

{

alert("调用成功")

}

</script>

</body>

<html>

效果图

使用addEventListener调用函数

<html>

<head>

<title>javascript函数调用</title>

</head>

<body>

<button id="btn">使用addEventListener调用函数</button>

<script>

    document.getElementById("btn").addEventListener("click",demo)

    function demo() {

        alert("addEventListener调用函数成功")

    }

</script>

</body>

</html>

以上就是通过HTML调用javascript函数,分别为DOM级和DOM2级函数调用,还有DOM3函数调用,但是与DOM2级函数差别不大,就不做讲解。在实际开发中DOM2级函数调用更多的被使用。


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

原文地址: http://outofmemory.cn/zaji/7253979.html

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

发表评论

登录后才能评论

评论列表(0条)

保存