从html体调用javascript函数

时间:2014-01-28 20:18:52

标签: javascript html

我有一个保存在文件(test.js)中的javascrip [t函数。我想从html文件的正文中调用该函数

类似

<script>
    load drawLogo("text" val1, val2, val3);
</script>

(因为此函数将在具有不同值的不同页面上调用)

现在我不得不把这个调用放在主函数drawLogo()的底部,这意味着我无法自定义它。

2 个答案:

答案 0 :(得分:0)

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

如果它是相同的功能,那么就像: -  onclick =“func()”或onmmousehover =“func()”  在脚本标记

中的同一文件中定义函数func()

答案 1 :(得分:0)

只需输入函数名称和接收它的参数,不要忘记先调用js文件:

test.js:

function drawLogo(paramText,value1,value2,value3){
    //Do something
}

HTML:

<head>
   <script src="test.js" type="text/javascript"></script>
   <!--you can put this in the head or in the body-->
   <script>
   drawLogo("some","value","for","example");
   </script>
</head>
<body>
   <!--you can put this in the head or in the body-->
   <script>
   drawLogo("some","value","for","example");
   </script>
</body>