动态更改网址"添加新项目"使用javascript / jquery链接

时间:2016-05-18 10:30:37

标签: javascript jquery

列表加载了?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);
});

1 个答案:

答案 0 :(得分:0)

您是否要在点击时加载新网址?

试试这个。 当您点击ID为“idHomePageNewItem”的标记时,它会在“cururlmod”中加载您的链接。

$("#idHomePageNewItem").on("click",function(){
    cururlmod="http://site/Lists/ListName/NewForm.aspx?RootFolder=&IsDlg=1";
    window.location.href = cururlmod;
});