我正在使用带有验证规则的动态表单,我想让浏览器在提交之前验证表单,因此我使用了whenClient
。单击时会出现一个复选框,不会处理验证...
['dv_number', 'required', 'when' => function ($model) {
return $model->is_cancelled == 1;
}, 'whenClient' => "function (attribute, value) {
console.log(attribute.name);
var firstletter=(attribute.name.charAt(0));
var index='';
if(firstletter==='['){ //when dynamic form is not activated and name of inputs is like [0]dv_number
index=attribute.name.charAt(1);//I get the array index
}else{
index=attribute.name.charAt(9);//dynamic form activated the name of inputs changed like this TblDvBub[0][dv_number].
}
if($('[name=\'TblDvBub[0][is_cancelled][]\']').is(\":checked\"))
{
return false;//validation will not take place
}
else
{
return true;//validation from browser takes place
}
}"
],
所以我使用index
变量获取索引号。我的问题是要将此行0
中的if($('[name=\'TblDvBub[0][is_cancelled][]\']').is(\":checked\"))
替换为索引并将其设为if($('[name=\'TblDvBub[index][is_cancelled][]\']').is(\":checked\"))
请注意,整个代码从客户端被" "
...
我尝试过这个以及其他很多但是没有用。
if($('[name=\'TblDvBub[' + index +'][is_cancelled][]\']').is(\":checked\"))
答案 0 :(得分:1)
这只是一个JS / jQuery / PHP问题。您必须转义选择器的名称过滤器中的括号:
if($('[name=TblDvBub\\[' + index + '\\]\\[is_cancelled\\]\\[\\]]').is(\":checked\"))
不太确定,但是当它在"" PHP中的字符串,你甚至必须加倍转义字符:
if($('[name=TblDvBub\\\\[' + index + '\\\\]\\\\[is_cancelled\\\\]\\\\[\\\\]]').is(\":checked\"))
我认为这是问题所在。有帮助吗?第一种还是第二种方式是正确的?
参见jQuery doc(在起始段落中注明)。