10

鉴于此 HTML 使用 jQuery 验证

 <input id="accept-terms" type="checkbox" class="required"/> 
 <label for="accept-terms"> I accept the <asp:HyperLink ID="termsLink" runat="server" Target="_blank">terms and condtions</asp:HyperLink> of sale.</label>
 <label for="accept-terms" class="error-text">You must accept the terms and conditions before purchasing</label>

我收到此错误:

未捕获的类型错误:无法调用未定义的方法“getAttribute”

4

1 回答 1

24

缺少“名称”属性:

<input id="accept-terms" name="accept-terms" type="checkbox" class="required"/> 

(这花了我一段时间才弄清楚,所以我想我会分享问题和解决方案)

另外:检查下面的评论,因为其他人已经发布了相同异常的其他原因。

于 2012-09-13T03:26:12.997 回答