如何在没有onclick事件的情况下调用javascript方法

时间:2014-11-20 00:55:34

标签: javascript html

我有一个像这样的JavaScript函数:

<script type="text/javascript" src="http://tem.parstools.com/zeos/js/animatedcollapse.js"></script>

<script type="text/javascript">
animatedcollapse.addDiv('bannertop', 'fade=0,speed=200,persist=1')

animatedcollapse.ontoggle=function($, divobj, state){
if (divobj.id=="bannertop") //only react to these two collapsible DIVs
document.getElementById(divobj.id+"-toggle").src=(state=="block")? "image1.png" : "image2.png"
}

animatedcollapse.init()
</script>

当用户点击特定图像时调用此函数,如:

<a href="javascript:animatedcollapse.toggle('bannertop')"><img id="bannertop-toggle" src="image_source" /></a>

但是,我希望我的网站首次加载此功能自动调用。

抱歉,我的英文打字很弱 任何人都可以帮助我吗? 感谢

1 个答案:

答案 0 :(得分:0)

您只需在脚本中调用该方法

即可
animatedcollapse.toggle('bannertop')

<script>标记内。您可能希望将此代码放在html文件的底部,就在</body>标记之前。