我在 AfterShowForm 事件中有一个带有函数“MyFunction”的 jqGrid。
MyFunction= function() {
alert("#MyElementId");
$("#MyElementId").attr("disabled", "true");
}
上面的代码有效,但如果我删除警报不起作用!
为什么?
编辑
HTML 代码是:
<div id="editcntgridVisualizzazioni" class="ui-jqdialog-content ui-widget-content">
<span>
<form name="FormPost" id="FrmGrid_gridVisualizzazioni" class="FormGrid" onsubmit="return false;" style="width:100%;overflow:auto;position:relative;height:auto;">
<table id="TblGrid_gridVisualizzazioni" class="EditTable" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr id="FormError" style="display:none">
<td class="ui-state-error" colspan="2"></td>
</tr>
<tr style="display:none" class="tinfo">
<td class="topinfo" colspan="2"></td>
</tr>
<tr id="tr_AggregazioniDatiDesc" class="FormData" rowpos="1">
<td class="CaptionTD">Agrégation</td>
<td class="DataTD">
<select disabled="disabled" name="AggregazioniDatiDesc" id="AggregazioniDatiDesc" maxlength="128" class="FormElement" role="select">
<option role="option" value=""></option>
<option role="option" value="1">Aucune</option>
....
</select>
</td>
</tr>
....
其中“AggregazioniDatiDesc”是 MyElementId
上面的代码是从编辑表单中的jqgrid创建的...
如果我不发出警报,则该元素没有属性 disabled="disabled"...