web前端面试题(二)

1、控制横向和纵向滚动条的显隐?

<body style=”overflow-y:hidden”> 去掉x轴
<body style=”overflow-x:hidden”> 去掉y轴
<body scroll=”no”>不显

2、表格变色

.style.backgroundColor=’#FFFFFF’”
οnmοuseοut=”this.style.backgroundColor=””
style=”CURSOR: hand”>

3、 禁止复制,鼠标拖动选取

event.returnValue=false οncοntextmenu=window.event.returnValue=false onselectstart=event.returnValue=false>

4、 普通iframe页面

<iframe name=”name” src=”main.htm” width=”450″ height=”287″ scrolling=”Auto” frameborder=”0″>iframe>

5、iframe自适应高度

<iframe name=”pindex” src=”index.asp” frameborder=false scrolling=”auto” width=”100%” height=”100%” frameborder=no onload=”document.all['pindex'].style.height=pindex.document.body.scrollHeight” >iframe>

6、IE地址栏前换成自己的图标&可以在收藏夹中显示出你的图标

<link rel=”Shortcut Iconhref=”favicon.ico”>
<link rel=”Bookmark” href=”favicon.ico”>

7、字号缩放

<script type=”text/javascript”>
function doZoom(size)
{document.getElementById(‘zoom’).style.fontSize=size+’px’;}
script>
<span id=”zoom”>需要指定大小的文字span>
<a href=”javascript:doZoom(16)”>a> <a href=”javascript:doZoom(14)”>a> <a href=”javascript:doZoom(12)”>a>

8、select挡住div的解决方法
在div里加入下面的代码,根据需要调整就可以了。

<iframe src=”javascript:false” scrolling=”no” frameborder=”0″ style=”z-index:-1;position:absolute; top:5px; left:2px;width:168;height:100px;”>
iframe>

9、iframe(嵌入式帧)自适应高度
填写的嵌入地址一定要和本页面在同一个站点上,否则会提示“拒绝访问!”。对跨域引用有权限问题,请查阅其他资料。

<iframe name=”guestbook” src=”gbook/index.aspscrolling=no width=”100%” height=”100%” frameborder=no onload=”document.all['guestbook'].style.height=guestbook.document.body.scrollHeight”>iframe>

10、 跳转菜单新窗口

<select name=”select” onchange=”window.open(this.options[this.selectedIndex].value)”>
<option value=”http://www.microsoft.com/ie”> Internet Exploreroption>
<option value=”http://www.microsoft.com”> Microsoft Homeoption>
<option value=”http://msdn.microsoft.com”> Developer Networkoption>
select>

11、flash透明选项

<param name=”wmode” value=”transparent”>

12、添加到收藏夹和设为首页

<a href=# onclick=”this.style.behavior=’url(#default#homepage)’;this.setHomePage(‘http://www.makewing.com/lanren/’);”>设为首页a>
<a href=”javascript:window.external.AddFavorite(‘http://www.makewing.com/lanren/’,'懒人图库’)”>收藏本站a>

13、记录并显示网页的最后修改时间

<script language=JavaScript>
document.write(“最后更新时间: ” + document.lastModified + “”)
script>

你可能感兴趣的:(面试)