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.

Share edited Jan 20, 2012 at 13:01 Dan McClain 11.9k9 gold badges51 silver badges68 bronze badges asked Aug 12, 2011 at 8:09 WanWan 531 gold badge1 silver badge3 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 7

Your 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