我正在使用 HTML5 并且 indexOf 给了我一个错误,那么我还能用什么来搜索字符串中的“正确”一词:a001_new_quiz_multiple_choice_new_mc4_correct.html
它位于一个名为的变量中value1
function SetAPIValue(key1, value1)
{
// alert("action is " + key1 + " and data is " + value1);
console.log(value1);
var str = "wrong";
var n = str.search(value1);
if (n > 0)
alert("found");
}
我得到的错误:0x800a01b6 - Microsoft JScript 运行时错误:对象不支持属性或方法'indexOf'