您好,欢迎访问三七文档
当前位置:首页 > 商业/管理/HR > 招聘面试 > 部分web前端面试题
1,判断字符串是否是这样组成的,第一个必须是字母,后面可以是字母、数字、下划线,总长度为5-20varreg=/^[a-zA-Z][a-zA-Z_0-9]{4,19}$/;reg.test(a1a__a1a__a1a__a1a__);2,截取字符串abcdefg的efgvarstr=abcdefg;if(/efg/.test(str)){varefg=str.substr(str.indexOf(efg),3);alert(efg);}3,判断一个字符串中出现次数最多的字符,统计这个次数//将字符串的字符保存在一个hashtable中,key是字符,value是这个字符出现的次数varstr=abcdefgaddda;varobj={};for(vari=0,l=str.length;i<l;i++){varkey=str[i];if(!obj[key]){obj[key]=1;}else{obj[key]++;}}/*遍历这个hashtable,获取value最大的key和value*/varmax=-1;varmax_key=;varkey;for(keyinobj){if(maxobj[key]){max=obj[key];max_key=key;}}alert(max:+max+max_key:+max_key);4,IE与FF脚本兼容性问题(1)window.event:表示当前的事件对象,IE有这个对象,FF没有,FF通过给事件处理函数传递事件对象(2)获取事件源IE用srcElement获取事件源,而FF用target获取事件源(3)添加,去除事件IE:element.attachEvent(“onclick”,function)element.detachEvent(“onclick”,function)FF:element.addEventListener(“click”,function,true)element.removeEventListener(“click”,function,true)(4)获取标签的自定义属性IE:div1.value或div1[“value”]FF:可用div1.getAttribute(“value”)(5)document.getElementByName()和document.all[name]IE;document.getElementByName()和document.all[name]均不能获取div元素FF:可以(6)input.type的属性IE:input.type只读FF:input.type可读写(7)innerTexttextContentouterHTMLIE:支持innerText,outerHTMLFF:支持textContent(8)是否可用id代替HTML元素IE:可以用id来代替HTML元素FF:不可以这里只列出了常见的,还有不少,更多的介绍可以参看JavaScript在IE浏览器和Firefox浏览器中的差异总结5,规避javascript多人开发函数重名问题(1)可以开发前规定命名规范,根据不同开发人员开发的功能在函数前加前缀(2)将每个开发人员的函数封装到类中,调用的时候就调用类的函数,即使函数重名只要类名不重复就ok6,javascript面向对象中继承实现javascript面向对象中的继承实现一般都使用到了构造函数和Prototype原型链,简单的代码如下:functionAnimal(name){this.name=name;}Animal.prototype.getName=function(){alert(this.name)}functionDog(){};Dog.prototype=newAnimal(Buddy);Dog.prototype.constructor=Dog;vardog=newDog();7,FF下面实现outerHTMLFF不支持outerHTML,要实现outerHTML还需要特殊处理思路如下:在页面中添加一个新的元素A,克隆一份需要获取outerHTML的元素,将这个元素append到新的A中,然后获取A的innerHTML就可以了。!DOCTYPEhtmlPUBLIC-//W3C//DTDXHTML1.0Transitional//EN==Content-Typecontent=text/html;charset=gb2312/title获取outerHMTL/titlestylediv{background:#0000FF;width:100px;height:100px;}span{background:#00FF00;width:100px;height:100px;}p{background:#FF0000;width:100px;height:100px;}/style/headbodydivid=aspanSPAN/spanDIV/divspanSPAN/spanpP/pscripttype=text/javascriptfunctiongetOuterHTML(id){varel=document.getElementById(id);varnewNode=document.createElement(div);document.appendChild(newNode);varclone=el.cloneNode(true);newNode.appendChild(clone);alert(newNode.innerHTML);document.removeChild(newNode);}getOuterHTML(a);/script/body/html8,编写一个方法求一个字符串的字节长度假设:一个英文字符占用一个字节,一个中文字符占用两个字节functionGetBytes(str){varlen=str.length;varbytes=len;for(vari=0;ilen;i++){if(str.charCodeAt(i)255)bytes++;}returnbytes;}alert(GetBytes(你好,as));9,编写一个方法去掉一个数组的重复元素vararr=[1,1,2,3,3,2,1];Array.prototype.unique=function(){varret=[];varo={};varlen=this.length;for(vari=0;ilen;i++){varv=this[i];if(!o[v]){o[v]=1;ret.push(v);}}returnret;};alert(arr.unique());10,写出3个使用this的典型应用(1)在html元素事件属性中使用,如inputtype=”button”onclick=”showInfo(this);”value=”点击一下”/(2)构造函数functionAnimal(name,color){this.name=name;this.color=color;}(3)inputtype=buttonid=textvalue=点击一下/scripttype=text/javascriptvarbtn=document.getElementById(text);btn.onclick=function(){alert(this.value);//此处的this是按钮元素}/script(4)CSSexpression表达式中使用this关键字tablewidth=100pxheight=100pxtrtddivstyle=width:expression(this.parentNode.width);divelement/div/td/tr/table12,如何显示/隐藏一个DOM元素?el.style.display=;el.style.display=none;el是要操作的DOM元素13,JavaScript中如何检测一个变量是一个String类型?请写出函数实现String类型有两种生成方式:(1)Varstr=“helloworld”;(2)Varstr2=newString(“helloworld”);functionIsString(str){return(typeofstr==string||str.constructor==String);}varstr=;alert(IsString(1));alert(IsString(str));alert(IsString(newString(str)));14,网页中实现一个计算当年还剩多少时间的倒数计时程序,要求网页上实时动态显示“××年还剩××天××时××分××秒”!DOCTYPEHTMLPUBLIC-//W3C//DTDHTML4.01Transitional//EN=Content-Typecontent=text/html;charset=UTF-8title倒计时/title/headbodyinputtype=textvalue=id=inputsize=1000/scripttype=text/javascriptfunctioncounter(){vardate=newDate();varyear=date.getFullYear();vardate2=newDate(year,12,31,23,59,59);vartime=(date2-date)/1000;varday=Math.floor(time/(24*60*60))varhour=Math.floor(time%(24*60*60)/(60*60))varminute=Math.floor(time%(24*60*60)%(60*60)/60);varsecond=Math.floor(time%(24*60*60)%(60*60)%60);varstr=year+年还剩+day+天+hour+时+minute+分+second+秒;document.getElementById(input).value=str;}window.setInterval(counter(),1000);/script/body/html15,补充代码,鼠标单击Button1后将Button1移动到Button2的后面divinputtype=”button”id=”button1″value=”1″onclick=”???”inputtype=”button”id=”button2″value=”2″/”/divdivinputtype=buttonid=button1value=1onclick=moveBtn(this);inputtype=buttonid=button2value=2//divscripttype=text/javascriptfunctionmoveBtn(obj){varclone=obj.cloneNode(true);varparent=obj.parentNode;parent.appendChild(clone);parent.removeChild(obj);}/script16,JavaScript有哪几种数据类型简单:Number,Boolea
本文标题:部分web前端面试题
链接地址:https://www.777doc.com/doc-5351176 .html