startsWith() 方法
startsWith() 方法用于检测字符串是否以指定的子字符串开始。如果是以指定的子字符串开头返回 true,否则 false。对大小写敏感。检测字符串中是否含有hello字符
var str = "Hello world, welcome to the Runoob.";
var n = str.startsWith("Hello");
最后输出的结果为“true ” 语法:
string.startsWith(searchvalue, start)
onselect事件
onselect 事件会在文本框中的文本被选中时发生。 <input type="text" onselect="myFunction">
深拷贝
深拷贝完成后,对于新的变量和旧的变量值改变时,不会互相影响。
function deepClone2(obj) {
var _obj = JSON.stringify(obj),
objClone = JSON.parse(_obj);
return objClone;
}
array.fill()
给数组从start到end(不包含end)索引处,元素值换为value。 array.fill(value, start, end)
vconsole
Vconsole是一个移动端的前端调试工具,因为手机的浏览器没有像电脑一样的控制台,有时候在真机上查看调试信息用Vconsole就非常的方便。
import VConsole from 'vconsole/dist/vconsole.min.js'
let vConsole = new VConsole()
|