我想在href加载新页面之后调用一个函数
<a title="invitation.jpg" target="_blank" class="tabmouserptr filestuffText" href="test.html?hiddenAction=viewfile&fileIndex=5675568">invitation.jpg</a>
加载新页面后,Javascript函数需要执行。
FileOpenCount() {
//stuff needed
}
答案 0 :(得分:0)
window.onload = function(){
// your code...
};
基本上你可以像上面一样使用。
答案 1 :(得分:0)
根据您的问题,您可以在脚本标记内调用该函数,例如
<script type="text/javascript">
FileOpenCount() {
//stuff needed
}
//call the function
window.onload=FileOpenCount;
</script>
答案 2 :(得分:0)
试试这个。我认为你希望原始页面在第二页完成加载后加载一些东西。不能直接使用a标签本身。但做这样的事情可能有用。
"atag".onclick = function() {
// open new browser window like _blank
var win = window.open("test.html?hiddenAction=viewfile&fileIndex=5675568");
// have a reference to the new window so once it's done loading, run my function
win.onload = FileOpenCount
};