我希望从 HTML 页面调用 javascript 函数,并且我不希望它依赖于任何事件。该函数位于一个单独的 .js 文件中,因为我希望从许多网页中使用它。我也将变量传递给它。我试过这个:
HTML:
<script type="text/javascript" src="fp_footer2.js">
footerFunction(1_basic_web_page_with_links, 1bwpwl.html);
</script>
fp_footer2.js 中的函数:
function footerFunction(path, file) {
document.write("<a href=" + path + "/" + file + " target='_blank'>Link to the original web page for this assignment.</a>");
return;
}
(我也尝试将 fp_footer2.js 文件引用放在标题中,但无济于事。我不确定是否可以像在此示例中那样将其“内联”。如果不能,请告诉我。
PS:我知道我可以在 HTML 本身中使用一个简单的 'a href=""' 来做到这一点。为了我自己的好奇心,我想看看这是否可行。