我正在尝试检查我的输入文本是否包含一个子字符串,它是一个变量:这是我的代码:
<script>
$("#envoi_search").click(function () {
var contenu = $("#champ").val() ;
$("#envoi_search").click(function() {
$("#result").html('') ;
$('#envoi_search').attr("disabled", "disabled");
$.ajax({
type: "POST",
url: "http://www.edumobile.org/blog/uploads/XML-parsing-data/Data.xml",
data: "{}",
cache: false,
dataType: "xml",
success: function(data) {
$(data).find("Book").each(function () {
var temp = $(this).find("name").text() ;
if (temp.toLowerCase().contenu > -1) {
$("#result").append("<br> Titre : " + temp);
$("#result").append("<br> Auteur : " + $(this).find("address").text());
$("#result").append("<br> Pays : " + $(this).find("country").text());
$('#envoi_search').attr("disabled", "");
}
});
}
});
});
});
</script>
而且我不知道为什么它不起作用。你对我的问题有任何想法吗?谢谢 :)