嗨,我在 html 中的代码是这样的
<input type="radio" name='answer_value1[<?php echo $survey1->id?>]' value="<?php echo $answer1->id?>" validate="required:true" id="<?php $answer1->valdt == '1' ? print "welcome":""?>" />
这是评论框的代码
<textarea rows="5" cols="55" name="nn[<?php echo $survey1->id?>]" id="comment" ></textarea>
如果单选按钮 id 是“欢迎”,那么我想让 textarea 应该被验证,否则不是。
我在 jquery 中写了一些代码
$(function() {
$('input[id="welcome"]')).change(function() {
$('textarea[id="comment"]').each(function(){
$(this).rules("add", {
required: true,
} );
} );
如果我先点击这个字段,然后如果我点击另一个单选按钮,它仍然会验证这个 textarea 字段。请给我一些想法