2

我希望有人可以帮助解决这个问题。我修改了jQuery 和单选按钮组的代码,但无法使其正常工作。这是我的 HTML:

https://gist.github.com/1319498

这是jQuery:

https://gist.github.com/1319503

我在 !!$(":radio[name="+group+"]:checked").length) 中的 if 语句失败,并且无论我是否选择单选按钮,都从未将 valid 设置为 true。

4

1 回答 1

2

您需要用单引号将选择器修饰符括起来:

!!$(":radio[name='"+group+"']:checked").length) 
于 2011-10-27T13:19:45.113 回答