列表加载了?frame=1
附加在网址中。
http://site/Lists/ListName/AllItems.aspx?iframe=1
点击列表的添加新项链接后,我需要使用javascript / jquery在URL中加载没有?iframe=1
的新项目表单。
http://site/Lists/ListName/NewForm.aspx?RootFolder=&IsDlg=1?&iframe=1
目前尝试使用以下代码但无效。请建议。
$(document).on("click","#idHomePageNewItem",function(){
cururlmod="http://site/Lists/ListName/NewForm.aspx?RootFolder=&IsDlg=1";
$("#idHomePageNewItem").attr("href", cururlmod);
});
答案 0 :(得分:0)
您是否要在点击时加载新网址?
试试这个。 当您点击ID为“idHomePageNewItem”的标记时,它会在“cururlmod”中加载您的链接。
$("#idHomePageNewItem").on("click",function(){
cururlmod="http://site/Lists/ListName/NewForm.aspx?RootFolder=&IsDlg=1";
window.location.href = cururlmod;
});