<script type="text/javascript">
$(function () {
$("#searchTerm").autocomplete({
//appendTo:"#abc",
// position: { my : "right top", at: "right bottom" },
source: "home/search",
minLength: 1,
autoFocus: true,
select: function (event, ui) {
if (ui.item) {
$("#searchTerm").val(ui.item.value);
$("form").submit();
}
else { alert("abc")}
}
});
});
</script>
我尝试了几件事,但不知怎的,我无法解决这个简单的事情。提前致谢
答案 0 :(得分:0)
怎么样:
if($.trim($("#searchTerm").val()).length === 0) {
alert("empty");
}
答案 1 :(得分:0)
如果.value是一个字符串,那么..
if (ui.item.value.length == 0)