str.replace(‘/正则表达式/‘,‘替换内容‘); //正则替换str.match(‘/正则表达式/‘,‘替换内容‘); //正则匹配 str.indexOf(‘查找代码‘); //查找是否包含某字符串 str.charAt(‘第n个字符‘); //取出字符串第n个字符str.split(‘分割标志‘); //字符串分割,返回数组str.substr(‘第n个字符‘,‘长度‘); //取出字符串第n个字符str.toUpperCase(); //转换大写str.toLowerCase(); //转换小写isNaN(变量); //是否为数字值 parseInt(‘强转整型‘); //强制转换变量类型为整型parseInt(‘强转浮点型‘); //强制转换变量类型为浮点型external.AddFavorite("地址","收藏夹名称"); //添加到收藏夹window.location.reload(); //刷新当前页面parent.location.reload(); //刷新父窗口window.history.back(); //返回前一页window.location.reload(); //刷新当前页面
时间: 2024-11-01 13:04:27