判断一个字符串是否在另一个字符串里面
var str = ‘bblText‘;
if(str.indexOf("Text") > 0) alert("包含了Text"); //返回的是查找字符的位置
取当前时间戳
parseInt(new Date().getTime()/1000)
时间: 2024-10-21 13:07:52
判断一个字符串是否在另一个字符串里面
var str = ‘bblText‘;
if(str.indexOf("Text") > 0) alert("包含了Text"); //返回的是查找字符的位置
取当前时间戳
parseInt(new Date().getTime()/1000)