我有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();
}
});
}
我应该如何实现这个
答案 0 :(得分:0)
只需将onload="somefunctiondocumentsjsfile()"
属性添加到<body>
文件中的开始documents.jsp
标记即可。