如何判断变量是否以_结尾,如果不是则返回一句话
var str="123";
if(str[str.length-1]!='_')
{alert("一句话");}
请注明所使用语言
js
@君九彧: js中不是有indexof等方法么,查找以_结尾即可