String.prototype.startsWith = function (str) { if (str == null || str == "" || this.length == 0 || str.length > this.length) { return false; } if (this.substring(0, s.length) == str) { return true; } else { return false; } return true; }### 问题描述
我直接放在script 标签中不行
// 请把代码文本粘贴到下方(请勿用图片代替代码)
慕容708150
相关分类