jQuery自动完成验证 - 如何进行选择?
我在文本框上使用jQuery自动完成功能,因此用户可以选择交易。我需要将其设置为必填字段。我也使用jQuery验证。jQuery自动完成验证 - 如何进行选择?
这里是我的自动完成cpde:
$(\"#trade\").autocomplete({ source: " . $tradeString . ",
maxHeight:100,
autoFill: true,
minLength: 3,
close: function() { $(\"#form\").validate().element(\"#trade\"); }
}).select(function() {
$(this).autocomplete(\"search\");
});
这是我的jQuery验证码:
$("#form").validate({ errorElement: "div",
validClass: "input_ok",
errorClass: "validation_error",
rules: { "address[postcode]": { required: true},
"general[trade]": { required: true},
"address[address_line_1]": { required: true},
"address[address_line_2]": { required: true},
"address[address_line_3]": { required: true},
"general[trade]": { remote: true,
required: true}
},
messages: { trade: { remote: "Trade not found."}
}
});
谁能帮助我吗?我之前已经完成了这个工作,但是使用远程调用PHP脚本来查看数据库中的交易。这是不必要的,因为$ tradeString以自动完成期望的格式返回交易列表。
回答:
看起来你需要在这里查看默认例如:http://jqueryui.com/demos/autocomplete/#default
这段代码看起来错误: 来源: “$ tradeString”
以上是 jQuery自动完成验证 - 如何进行选择? 的全部内容, 来源链接: utcz.com/qa/265345.html