我有一个使用 jQuery 验证脚本jquery.validate.js
我需要的是当用户选择是时 - 需要额外信息(必填字段),如果用户选择否 - 很好,继续
尝试了很长时间没有成功 - 添加
非常感谢您的帮助!
这是我的 PHP 代码:
// If form type is radio, display as a radio button with yes/no answers
if ($form_type == 'radio')
{
echo "<input type=\"radio\" name=\"screen_184\" value=\"Yes\" checked /> <label>Yes</label> <input type=\"radio\" name=\"screen_184\" value=\"No\" /> <label>No</label><br /><br />";
// If from type is radio and additional information is required, display a textarea
if ($extra_info == 'Yes')
{
if ($row['required'] == 'Yes') {$class = 'required';} else {$class = 'input_field';}
echo "<textarea class=\"$class\" maxlegth=\"500\" name=\"screentext_184\" /></textarea></li><br /><br />\n";
}