下拉验证
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下拉验证相关的知识,希望对你有一定的参考价值。
requires that a pulldown \"program1\" in form \"freshmen\" be set to anything but the first value in the option list. \r\n\r\nrequires jquery validate: http://docs.jquery.com/Plugins/Validation
jQuery.validator.addMethod( "selectNone", function(value, element) { //alert(element.options.selectedIndex); //if (element.value == "blank"){ if (element.options.selectedIndex == "0"){ return false; } else return true; }, "Please select an option." ); $(document).ready(function(){ $("#freshmen").validate({ rules: { program1: { selectNone: true } } });
以上是关于下拉验证的主要内容,如果未能解决你的问题,请参考以下文章
在国家代码下拉列表中添加所需的验证 [ intl-tel-input jquery plugin ]
如何在文本区域标签中的特定光标位置插入选择标签下拉值作为文本片段?