当我在循环中循环时,我试图匹配数组是否包含用户输入的值,如果是,则消息国家存在。但这不起作用。这是代码:
<input type="text" id="topics" >
<a id="submit-button" href="#">button</a>
$('#submit-button').click(function(){
var isCountry = $("#topics").val();
$.each(topics, function(i, item) {
if(isCountry == topics[i].value){
alert("country exists");
}else{
alert("country doesn't exists");
}
});
});
完整代码在这里:http: //jsfiddle.net/4XHPY/
谢谢你们