我已经用javascript制作了一个页面,并在他的onload中调用了一个函数,但是如果它是从hlink加载的,则不会调用它,但是如果重新加载该页面,则可以调用该函数,我们将不胜感激。

我在外部Js文件中有一个函数名loadbody,这是我的函数

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


我在doument.ready()中编写此函数。这是我的索引页

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

最佳答案

只需在hlink标记中使用onclick事件即可:)

这是您的HTML页面::

<!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>


这是您的外部JS页面::

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

09-20 19:58