我有一行我想通过 javascript 隐藏。问题是它给了我 Microsoft JScript 运行时错误:需要对象。在 aspx 上的行:
<tr id="RowCliamMessage">
<td>
<asp:Label ID="Label11" runat="server" ForeColor="Red" Visible="false"
Text="While .....">
</asp:Label>
</td>
</tr>
JavaScript:
function CompareDateRange(sender,args)
{
if ((CheckDate >= RangeDate1))
{
args.IsValid = true;
if (CheckDate <= RangeDate3)
{
document.getElementById('ContentPlaceHolder1_RowCliamMessage').style.display="none";
}
}
else
{
args.IsValid = false;
}
}
我哪里错了?