从hlink加载页面时不加载?

时间:2015-11-10 06:15:42

标签: javascript html

我在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>

1 个答案:

答案 0 :(得分:0)

只需在hlink标签中使用onclick事件:)

这是你的HTML页面::

select e.fee_particular,e.fee_amount,s.paid from es_feemaster e left join es_feepaid_new s on s.fee_particular=e.es_feemasterid where s.es_preadmissionid=914 and s.voucherid=208 and e.fee_class=13

这是您的外部JS页面::

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