admin管理员组文章数量:1344606
I have a Javascript file that is split into to two parts. The first part of the code ends by refreshing the current page. I would like to try to get the second part of the code to execute as soon as the page reloads, but I am having trouble finding a way to implement this. I pretty much want a way to do
window.onload = someFunction()
except that it activates the function after reloading the page due to the first part of the Javascript. Is there an effective way to do this?
I have a Javascript file that is split into to two parts. The first part of the code ends by refreshing the current page. I would like to try to get the second part of the code to execute as soon as the page reloads, but I am having trouble finding a way to implement this. I pretty much want a way to do
window.onload = someFunction()
except that it activates the function after reloading the page due to the first part of the Javascript. Is there an effective way to do this?
Share Improve this question edited Dec 15, 2011 at 22:59 Gautam 7,95814 gold badges67 silver badges106 bronze badges asked Dec 15, 2011 at 10:34 Loco MocoLoco Moco 411 gold badge1 silver badge2 bronze badges 3- Add Javascript at the end of page. – KV Prajapati Commented Dec 15, 2011 at 10:36
-
window.onload = someFunction
? – OnesimusUnbound Commented Dec 15, 2011 at 10:49 - A little bit more code can make the question a bit more clear . – Gautam Commented Dec 15, 2011 at 22:58
3 Answers
Reset to default 3You could do that using Jquery. This is executed on page loading
$(function() {
callMyFunction()
});
Use
document.onload = somefunction()
Instead . This will get executed immediately after the DOM loads .
You can also use the jQuery to do the same like
$(document).ready(function(){
somefunction();
});
The only way I can think of is to add query string value when refreshing, then read that value and act upon it.
You can use such code:
function ParseQueryString() {
var result = [];
var strQS = window.location.href;
var index = strQS.indexOf("?");
if (index > 0) {
var temp = strQS.split("?");
var arrData = temp[1].split("&");
for (var i = 0; i < arrData.length; i++) {
temp = arrData[i].split("=");
var key = temp[0];
var value = temp.length > 0 ? temp[1] : "";
result[key] = value;
}
}
return result;
}
window.onload = function WindowLoad() {
var QS = ParseQueryString();
var reloaded = QS["reloaded"];
if (reloaded === "1") {
//execute second part of code
}
}
Then when reloading, redirect to same page adding ?reloaded=1
otherwise (if this flag is already raised) don't refresh the page again to avoid infinite loop.
本文标签: onloadExecuting Javascript code after loading refreshed pageStack Overflow
版权声明:本文标题:onload - Executing Javascript code after loading refreshed page - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743751709a2532771.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论