我想检查响应文本中是否存在特定单词并在之后执行某些条件,我该怎么做。到目前为止我只能从php获得“真实”
function checkCellNo() {
var cnv = _("CellNo").value;
if (cnv != "") {
$("#CellNostatus")
.html('Checking your number: ...')
.css('background-image', 'url(images/IMG_8482.GIF)')
.append($('#CellNo').val());
var ajax = ajaxObj("POST", "ucheck.php");
ajax.onreadystatechange = function () {
if (ajaxReturn(ajax) == true) {
_("CellNostatus").innerHTML = ajax.responseText;
}
ajax.send("CellNocheck=" + cnv);
}
}
}
答案 0 :(得分:1)
您可以使用indexOf
if (!(ajax.responseText.indexOf('yourword') == -1)) {
//do something
}