位置:首页 > 软件操作教程 > 编程开发 > HTML > 问题详情

常用HTML代码解释8

提问人:刘团圆发布时间:2020-10-10

31.不要滚动条?
让竖条没有:
<body style="overflow:scroll;overflow-y:hidden">
</body>
让横条没有:
<body style="overflow:scroll;overflow-x:hidden">
</body>
两个都去掉?更简单了
<body scroll="no">
</body>

 

32.怎样去掉图片链接点击后,图片周围的虚线?

 

<a href="#" nFocus="this.blur()"><img src="logo.jpg" border=0></a>

 

33.电子邮件处理提交表单

 

<form. name="form1" method="post" action="mailt****@***.com" enctype="text/plain">
<input type=submit>
</form>

 

34.在打开的子窗口刷新父窗口的代码里如何写?
window.opener.location.reload()

 

35.如何设定打开页面的大小
<body nload="top.resizeTo(300,200);">
打开页面的位置<body nload="top.moveBy(300,200);">

 

36.在页面中如何加入不是满铺的背景图片,拉动页面时背景图不动
<STYLE>
body
{background-image:url(logo.gif); background-repeat:no-repeat;
background-position:center;background-attachment: fixed}
</STYLE>

 

37. 检查一段字符串是否全由数字组成
<script. language="Javascript"><!--
function checkNum(str){return str.match(//D/)==null}
alert(checkNum("1232142141"))
alert(checkNum("123214214a1"))
// --></script>

 

38. 获得一个窗口的大小
document.body.clientWidth; document.body.clientHeight

 

39. 怎么判断是否是字符
if (/[^/x00-/xff]/g.test(s)) alert("含有汉字");
else alert("全是字符");

40.TEXTAREA自适应文字行数的多少
<textarea rows=1 name=s1 cols=27 npropertychange="this.style.posHeight=this.scrollHeight">
</textarea>

 

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部