当下拉列表数据更改时,我对如何更改 CheckBox 的输入类有疑问。
这是我的 html 标记:
<p>
<label for="ddlContType">
Contact Type</label>
<span>
@Html.DropDownList("ddlContType", new SelectList(ViewBag.ContTypeList, "ID", "Display_Value",ContType), "[Please Select]",
new Dictionary<string, object>
{
{"class","validate[required] inputLong"}
})
</span>
</p>
<p>
<label for="txtContValue">
Contact Value</label>
<span>
<input type="text" id="txtContValue" name="txtContValue" class="validate[required] inputLong"
value="" />`
因为我用过jquery的validate
我的 DropDownList 上有电子邮件和电话号码
我想验证当我在下拉列表中选择电子邮件时,它将允许电子邮件格式文本框,当我在下拉列表中选择电话号码时。
它只允许电话格式这是我正在使用的类
class="validate[required,custom[email]]
和
class="validate[required,custom[phone]]