我们现在有jquery的form对象,我们如何获取某个input的值呢?
先看我们form中的input标签长啥样吧:
<input type="text" class="input-text" value="" placeholder="" id="webpath" name="webpath">
直接上代码:
$("#form-resource-select").validate({
onkeyup:false,
focusCleanup:true,
success:"valid",
submitHandler:function(form){
$v = $(form).find('#webpath').val();
console.log($v) ;
}
});
网友评论