我在NewForm.aspx中有一个SharePoint“保存”按钮,我试图通过jQuery禁用它。 按钮如下面的F12:
所示<input name="ctl00$ctl30$g_3bef9488_b9f0_405d_b989_cdfc35172f0d$ctl00$toolBarTbl$RightRptControls$ctl00$ctl00$diidIOSaveItem" class="ms-ButtonHeightWidth" id="ctl00_ctl30_g_3bef9488_b9f0_405d_b989_cdfc35172f0d_ctl00_toolBarTbl_RightRptControls_ctl00_ctl00_diidIOSaveItem" accesskey="O" onclick="if (!PreSaveItem()) return false;if (SPClientForms.ClientFormManager.SubmitClientForm('WPQ2')) return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$ctl30$g_3bef9488_b9f0_405d_b989_cdfc35172f0d$ctl00$toolBarTbl$RightRptControls$ctl00$ctl00$diidIOSaveItem", "", true, "", "", false, true))" type="button" value="Save" target="_self">
是否可以通过检查其值来禁用Jquery中的按钮。我的意思是,如果值显示为“保存”,那么禁用按钮? 感谢
答案 0 :(得分:0)
获取value属性以&#39; Save&#39;结尾的元素。并禁用它。
$("input[value$='Save']").attr('disabled',true);