从不同的页面调用另一个页面的js函数

时间:2016-08-29 07:24:00

标签: jquery html ajax

我有3页dashboard.html,documents.jsp,documents.js

在dashboard.html文件中的

我有一个href链接,它应该将页面重定向到documents.jsp并调用documents.jsp文件中包含的documents.js文件中的函数。

dashboard.html

<a href="documents.jsp?filter=somefunctiondocumentsjsfile"

documents.js

在这个文件中我有一个像

这样的ajax调用
function somefunctiondocumentsjsfile(){
$.ajax({
    url : "DeleteDocument?docId=" + JSON.stringify(selectedItemsToDelete),
    type: "GET",
    success: function(data){
        console.log(data);
        showDangerPopup(data);
        getOfficialDocs();
    }
});
}

我应该如何实现这个

1 个答案:

答案 0 :(得分:0)

只需将onload="somefunctiondocumentsjsfile()"属性添加到<body>文件中的开始documents.jsp标记即可。