我想问你是否可以使用函数“ if”“ indexOf”来使用文件中的字符串(例如.txt文件中是否包含单词)。
我正在使用if indexOf来输入HTML代码进行输入后检查字符串是否存在。
function checkBarcode()
{
var barcode = document.getElementById("barcodedata").value;
if (barcode.indexOf('RMA') > -1) {
} else if (barcode.indexOf('sp') > -1) {
} else if (barcode.indexOf('D') > -1) {
} else if (barcode.indexOf('J') > -1) {
} else {
alert("message");
funcinvalid();
}
}
感谢您的帮助。