admin管理员组文章数量:1341879
I want to put this in my website
<script type="text/javascript"> <!-- window.onload = hello; function
hello() { var name = prompt("What is your name", "") alert ( "Hello "
+ name + "! Wele to my forum.") } </script>
but I dont want to put it in index but in separate file, let say hello.js
How can I call it from index file so when I click the index.html, it will immediately prompt for my name. (for example)
I put <script src="hello.js"></script>
does not work.
I want to put this in my website
<script type="text/javascript"> <!-- window.onload = hello; function
hello() { var name = prompt("What is your name", "") alert ( "Hello "
+ name + "! Wele to my forum.") } </script>
but I dont want to put it in index but in separate file, let say hello.js
How can I call it from index file so when I click the index.html, it will immediately prompt for my name. (for example)
I put <script src="hello.js"></script>
does not work.
4 Answers
Reset to default 7Your hello.js should look something like this:
window.onload = hello;
function hello() {
var name = prompt("What is your name", "");
alert("Hello " + name + "! Wele to my forum.");
}
and then the <script src="hello.js"></script>
should work just fine.
There shouldn't be much more to it than importing that script. But then, your script is all broken. Of course it won't work, unless your browser can interpret it. Take a look at javascript basics. On the first look, you don't seem to be using semicolons to delimit individual statements. Also, you have opened an HTML ment <!--
but you have never closed it...
Change your code to something like this:
<script type="text/javascript">
var name = prompt("What is your name", "");
alert ( "Hello " + name + "! Wele to my forum."); </script>
i.e, remove any function and just write your alert directly, this should work.
Ubuntu Server 16.04
external JS
change-from: --> window.onload = hello;
change-to: --> window.document.body.onload = hello;
html
body onload="hello()"
本文标签: htmlHow to call external javascript on windowloadStack Overflow
版权声明:本文标题:html - How to call external javascript on window.load? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743683897a2521575.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论