var str = 'a';var strs = 'abadg';if(strs.indexOf(str) >= 0){ alert("strs 包含 str");}else{ alert("strs 不包含 str");}