简体   繁体   中英

Page not loading when loaded from an hlink?

I have made a page in javascript and calls a function in his onload, but that didn't called if its loaded from hlink, but call that function if reload the page, any help will be appreciated.

i have a function name loadbody in external Js file here is my function

function loadbody(){
  alert("Get values from local storage");
}

i write this function in doument.ready() . here is my index page

<body onload="loadbody()">
<h1> this is phonegap indexpage </h1>
</body>

Just use a onclick event in hlink tag :)

here is your HTML page ::

<!DOCTYPE html>
<html>
<head>
<title>Js </title>
<script src="script.js"></script> 
</head>
<body>
<h1> this is phonegap indexpage </h1>

<a href='http://www.google.com' onclick='loadbody();'>mylink</a>

</body>
</html>

Here is your external JS page ::

function loadbody(){
alert("Get values from local storage");
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM