javascript

位置:IT落伍者 >> javascript >> 浏览文章

JavaScript实用的一些技巧


发布日期:2023年01月30日
 
JavaScript实用的一些技巧
oncontextmenu=windoweventreturnValue=false 将彻底屏蔽鼠标右键

<table border oncontextmenu=return(false)><td>no</table> 可用于Table

<body onselectstart=return false> 取消选取防止复制

onpaste=return false 不准粘贴

oncopy=return false; oncut=return false; 防止复制

<link rel=Shortcut Icon > IE地址栏前换成自己的图标

<link rel=Bookmark > 可以在收藏夹中显示出你的图标

<input > 关闭输入法

永远都会带着框架

<script language=JavaScript><!

if (window == top)toplocationhref = ; //为框架网页

// ></script>

防止被人frame

<SCRIPT LANGUAGE=JAVASCRIPT><!

if (toplocation != selflocation)toplocation=selflocation;

// ></SCRIPT>

网页将不能被另存为

<noscript><iframe src=l></iframe></noscript>

<input type=button value=查看网页源代码

onclick=windowlocation = viewsource:+ >

删除时确认

<a javascript:if(confirm(确实要删除吗?))location=boosasp?&areyou=删除&page=>删除</a>

取得控件的绝对位置

//Javascript

<script language=Javascript>

function getIE(e){

var t=eoffsetTop;

var l=eoffsetLeft;

while(e=eoffsetParent){

t+=eoffsetTop;

l+=eoffsetLeft;

}

alert(top=+t+/nleft=+l);

}

</script>

//VBScript

<script language=VBScript><!

function getIE()

dim tlab

set a=documentallimg

t=documentallimgoffsetTop

l=documentallimgoffsetLeft

while atagName<>BODY

set a = aoffsetParent

t=t+aoffsetTop

l=l+aoffsetLeft

wend

msgbox top=&t&chr()&left=&l得到控件的位置

end function

></script>

光标是停在文本框文字的最后

<script language=javascript>

function cc()

{

var e = eventsrcElement;

var r =ecreateTextRange();

rmoveStart(characterevaluelength);

llapse(true);

rselect();

}

</script>

<input type=text name=text value= onfocus=cc()>

判断上一页的来源

javascript:

documentreferrer

最小化最大化关闭窗口

<object id=hh classid=clsid:ADBADFFCFAABA>

<param name=Command value=Minimize></object>

<object id=hh classid=clsid:ADBADFFCFAABA>

<param name=Command value=Maximize></object>

<OBJECT id=hh classid=clsid:adbadffcfaaba>

<PARAM NAME=Command VALUE=Close></OBJECT>

<input type=button value=最小化 onclick=hhClick()>

<input type=button value=最大化 onclick=hhClick()>

<input type=button value=关闭 onclick=hhClick()>

本例适用于IE

屏蔽功能键ShiftAltCtrl

<script>

function look(){

if(eventshiftKey)

alert(禁止按Shift键!); //可以换成ALTCTRL

}

documentonkeydown=look;

</script>

网页不会被缓存

<META HTTPEQUIV=pragma CONTENT=nocache>

<META HTTPEQUIV=CacheControl CONTENT=nocache mustrevalidate>

<META HTTPEQUIV=expires CONTENT=Wed Feb :: GMT>

或者<META HTTPEQUIV=expires CONTENT=>

怎样让表单没有凹凸感?

<input type=text >

<input type=text ></textarea>

<div><span>&<layer>的区别?

<div>(division)用来定义大段的页面元素会产生转行

<span>用来定义同一行内的元素跟<div>的唯一区别是不产生转行

<layer>是ns的标记ie不支持相当于<div>

让弹出窗口总是在最上面:

<body onblur=thisfocus();>

不要滚动条?

让竖条没有:

<body >

</body>

让横条没有:

<body >

</body>

两个都去掉?更简单了

<body scroll=no>

</body>

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

<a # onFocus=thisblur()><img src=logojpg border=></a>

电子邮件处理提交表单

<form name=form method=post action=mailto:****@** enctype=text/plain>

<input type=submit>

</form>

在打开的子窗口刷新父窗口的代码里如何写?

windowopenerlocationreload()

如何设定打开页面的大小

<body onload=topresizeTo();>

打开页面的位置<body onload=topmoveBy();>

在页面中如何加入不是满铺的背景图片拉动页面时背景图不动

<STYLE>

body

{backgroundimage:url(logogif); backgroundrepeat:norepeat;

backgroundposition:center;backgroundattachment: fixed}

</STYLE>

检查一段字符串是否全由数字组成

<script language=Javascript><!

function checkNum(str){return strmatch(//D/)==null}

alert(checkNum())

alert(checkNum(a))

// ></script>

获得一个窗口的大小

documentbodyclientWidth; documentbodyclientHeight

怎么判断是否是字符

if (/[^/x/xff]/gtest(s)) alert(含有汉字);

else alert(全是字符);

TEXTAREA自适应文字行数的多少

<textarea rows= name=s cols= onpropertychange=thisstyleposHeight=thisscrollHeight>

</textarea>

日期减去天数等于第二个日期

<script language=Javascript>

function cc(dddadd)

{

//可以加上错误处理

var a = new Date(dd)

a = avalueOf()

a = a dadd * * * *

a = new Date(a)

alert(agetFullYear() + + (agetMonth() + ) + + agetDate() + )

}

cc(//)

</script>

选择了哪一个Radio

<HTML><script language=vbscript>

function checkme()

for each ob in radio

if obchecked then windowalert obvalue

next

end function

</script><BODY>

<INPUT name=radio type=radio value=style checked>Style

<INPUT name=radio type=radio value=barcode>Barcode

<INPUT type=button value=check onclick=checkme()>

</BODY></HTML>

脚本永不出错

<SCRIPT LANGUAGE=JavaScript>

<! Hide

function killErrors() {

return true;

}

windowonerror = killErrors;

// >

</SCRIPT>

ENTER键可以让光标移到下一个输入框

<input onkeydown=if(eventkeyCode==)eventkeyCode=>

检测某个网站的链接速度

把如下代码加入<body>区域中:

<script language=Javascript>

tim=

setInterval(tim++)

b=

var autourl=new Array()

autourl[]=

autourl[]=

autourl[]=

autourl[]=

autourl[]=

function butt(){

documentwrite(<form name=autof>)

for(var i=;i<autourllength;i++)

documentwrite(<input type=text name=txt+i+ size= value=测试中……> =》<input type=text

name=url+i+ size=> =》<input type=button value=GO

onclick=windowopen(thisformurl+i+value)><br>)

documentwrite(<input type=submit value=刷新></form>)

}

butt()

function auto(url){

documentforms[][url+b]value=url

if(tim>)

{documentforms[][txt+b]value=链接超时}

else

{documentforms[][txt+b]value=时间+tim/+}

b++

}

function run(){for(var i=;i<autourllength;i++)documentwrite(<img //+autourl+/+Mathrandom()+ width= height=

onerror=auto(//+autourl+)>)}

run()</script>

各种样式的光标

auto 标准光标

default 标准箭头

hand 手形光标

wait 等待光标

text I形光标

verticaltext 水平I形光标

nodrop 不可拖动光标

notallowed 无效光标

help ?帮助光标

allscroll 三角方向标

move 移动标

crosshair 十字标

eresize

nresize

nwresize

wresize

sresize

seresize

swresize

页面进入和退出的特效

进入页面<meta httpequiv=PageEnter content=revealTrans(duration=x transition=y)>

推出页面<meta httpequiv=PageExit content=revealTrans(duration=x transition=y)>

这个是页面被载入和调出时的一些特效duration表示特效的持续时间以秒为单位transition表示使用哪种特效取值为:

矩形缩小

矩形扩大

圆形缩小

圆形扩大

下到上刷新

上到下刷新

左到右刷新

右到左刷新

竖百叶窗

横百叶窗

错位横百叶窗

错位竖百叶窗

点扩散

左右到中间刷新

中间到左右刷新

中间到上下

上下到中间

右下到左上

右上到左下

左上到右下

左下到右上

横条

竖条

以上种随机选择一种

在规定时间内跳转

<META httpequiv=V=REFRESH content=;URL=>

网页是否被检索

<meta name=ROBOTS content=属性值>

其中属性值有以下一些:

属性值为all: 文件将被检索且页上链接可被查询

属性值为none: 文件不被检索而且不查询页上的链接

属性值为index: 文件将被检索

属性值为follow: 查询页上的链接

属性值为noindex: 文件不检索但可被查询链接

属性值为nofollow: 文件不被检索但可查询页上的链接

               

上一篇:JavaScript去除空格的三种方法

下一篇:JScript错误代码及相应解释