请帮我修改一个手机号正则
!(/^1s[3456789]s(ds*){9}$/).test(this.info.linkPhoneMsg) 如何让这个判断 添加 可不填 如果填写 验证手机号是否正确 如果不填 不验证手机号 …
关于js类的封装 实例化 参数问题
提问:我用JS封装了一个类,封装方式 var dragbox = function (config, returntype) { var dom = this.init(config) // return dom } //构造函数 cla…
这里的this为何要赋值给othis再用,othis与原来的this有什么区别?为什么不能把othis全部换成this?
function gun(){ this.gun=document.createElement("div") this.gun.className="gunBox" document.body.appendChild(this.gun) var othis = this this…
新手求助:为什么这里的Console.log返回undefined?
function d(){this.get=function(){this.getNum()}}d.prototype.getName=function(){return 3}var d = new d()console.log(d.get())//undefined 为什…
用js编写一个函数,从一个任意字符串中提取所有的数字,然后将它们添加在一起
注意不能用正则表达式. 使用的知识点只能是js的语法范围. 先谢过了 例如: Input: “We have 30 apples will be handed out to 10 students who need …
js中原型prototype被重写后到底是怎么回事
用个例子说明问题:function F(){}var p1 = new F()F.prototype = {}var p2 = new F()console.log(p1.constructor)//Fconsole.log(p2.constructor)//…
关于js中,原型对象,原型链,构造函数,实例之间关系的理解与区别
求问,原型和原型链这部分有些不明白了,下面是我的理解,不知道对不对? 1.函数都有prototype属性,是一个指针,指向函数的实例化对象---是不是说pr…
js call()的传参问题 //codewars上遇到的题目
今天在codewars上遇到了这样一个问题,不要脸的我又来问答案了,哈哈。。 下面是我写的答案: 运行后: 好像我的首字母没有转换过来!我觉得应该是ca…