Ò׽ؽØÍ¼Èí¼þ¡¢µ¥Îļþ¡¢Ãâ°²×°¡¢´¿ÂÌÉ«¡¢½ö160KB

JavaScriptɾ³ýÊý×éÖÐÖ¸¶¨ÖµµÄÔªËØ

/* ·½·¨:Array.remove(dx)
* ¹¦ÄÜ:ɾ³ýÊý×éÔªËØ.
* ²ÎÊý:dxɾ³ýÔªËØµÄϱê.
* ·µ»Ø:ÔÚÔ­Êý×éÉÏÐÞ¸ÄÊý×é
*/
//¾­³£ÓõÄÊÇͨ¹ý±éÀú,ÖØ¹¹Êý×é.
Array.prototype.remove=function(dx)
{
if(isNaN(dx)||dx>this.length){return false;}
for(var i=0,n=0;i<this.length;i++)
{
if(this[i]!=this[dx])
{
this[n++]=this[i]
}
}
this.length-=1
}

//ÔÚÊý×éÖлñȡָ¶¨ÖµµÄÔªËØË÷Òý
Array.prototype.getIndexByValue= function(value)
{
var index = -1;
for (var i = 0; i < this.length; i++)
{
if (this[i] == value)
{
index = i;
break;
}
}
return index;
}
//ʹÓþÙÀý
a = ['1','2','3','4','5'];
var dx=a.getIndexByValue£¨"2");
a.remove(dx); //ɾ³ýϱêΪdxµÄÔªËØ 
¡¡ /*
¡¡ *¡¡·½·¨:Array.remove(dx)
¡¡ *¡¡¹¦ÄÜ:ɾ³ýÊý×éÔªËØ.
¡¡ *¡¡²ÎÊý:dxɾ³ýÔªËØµÄϱê.
¡¡ *¡¡·µ»Ø:ÔÚÔ­Êý×éÉÏÐÞ¸ÄÊý×é
¡¡ */
¡¡¡¡
¡¡//¾­³£ÓõÄÊÇͨ¹ý±éÀú,ÖØ¹¹Êý×é.
¡¡Array.prototype.remove=function(dx)
¡¡{
¡¡¡¡if(isNaN(dx)||dx>this.length){return false;}
¡¡¡¡for(var i=0,n=0;i<this.length;i++)
¡¡¡¡{
¡¡¡¡¡¡¡¡if(this[i]!=this[dx])
¡¡¡¡¡¡¡¡{
¡¡¡¡¡¡¡¡¡¡¡¡this[n++]=this[i]
¡¡¡¡¡¡¡¡}
¡¡¡¡}
¡¡¡¡this.length-=1
¡¡}
¡¡a = ['1','2','3','4','5'];
¡¡alert("elements: "+a+"nLength: "+a.length);
¡¡a.remove(0); //ɾ³ýϱêΪ0µÄÔªËØ
¡¡alert("elements: "+a+"nLength: "+a.length);
¡¡¡¡
¡¡/*
¡¡ *¡¡·½·¨:Array.baoremove(dx)
¡¡ *¡¡¹¦ÄÜ:ɾ³ýÊý×éÔªËØ.
¡¡ *¡¡²ÎÊý:dxɾ³ýÔªËØµÄϱê.
¡¡ *¡¡·µ»Ø:ÔÚÔ­Êý×éÉÏÐÞ¸ÄÊý×é.
¡¡ */
¡¡¡¡
¡¡//ÎÒÃÇÒ²¿ÉÒÔÓÃspliceÀ´ÊµÏÖ.
¡¡¡¡
¡¡Array.prototype.baoremove = function(dx)
¡¡{
¡¡¡¡if(isNaN(dx)||dx>this.length){return false;}
¡¡¡¡this.splice(dx,1);
¡¡}
¡¡b = ['1','2','3','4','5'];
¡¡alert("elements: "+b+"nLength: "+b.length);
¡¡b.baoremove(1); //ɾ³ýϱêΪ1µÄÔªËØ
¡¡alert("elements: "+b+"nLength: "+b.length); 


Ïà¹ØÎĵµ£º

JavaScript²¶»ñ´°¿Ú¹Ø±Õʼþ

JavaScript²¶»ñ´°¿Ú¹Ø±Õʼþ
¹Ø¼ü×Ö: window.closeʼþ
javascript²¶»ñ´°¿Ú¹Ø±ÕʼþÓÐÁ½ÖÖ·½·¨
1.ÓÃjavascriptÖØÐ¶¨Òå window.onbeforeunload()  ʼþ
ÔÚjavascriptÀﶨÒåÒ»¸öº¯Êý¼´¿É
function  window.onbeforeunload()  {  alert("¹Ø±Õ´°¿Ú")}
alert()ʼþ½«»áÔڹرմ°¿ÚǰִÐУ¬ÄãÒ²¿ÉÒÔÓà ......

javascript ³£Óü¼ÇÉ

1. oncontextmenu="window.event.returnValue=false" ½«³¹µ×ÆÁ±ÎÊó±êÓÒ¼ü
<table border oncontextmenu=return(false)><td>no</table> ¿ÉÓÃÓÚTable
2. <body onselectstart="return false"> È¡Ïûѡȡ¡¢·ÀÖ¹¸´ÖÆ
3. onpaste="return false" ²»×¼Õ³Ìù
4. oncopy=& ......

ÈçºÎÆÁ±ÎjavascriptµÄ´íÎóÐÅÏ¢

ÈçºÎÆÁ±ÎjavascriptµÄ´íÎóÐÅÏ¢:
 
Ö»ÒªÔÚÒ³ÃæÖмÓÈëÈçÏ´úÂë¼´¿É£º
<SCRIPT LANGUAGE='JavaScript'>
<!--
//ÆÁ±Îjs´íÎó
 function ResumeError() {
 return true;
 }
 window.onerror = ResumeError;
 // -->
</SCRIPT> ......

¡¾Ô­´´¡¿JavaScript»ÃµÆÆ¬Ð¡ÊµÀý¼°½Ì³Ì£¨JsBox v1.2£©

ÐèÒªÔËÐл·¾³£º.net framework 3.0¼°ÒÔÉÏÔËÐл·¾³Ö§³Ö¡£
ÓÐϲ»¶µÄ¿´¿´°É£¬
ÄÚ¸½¾«ÐÄÖÆ×÷µÄJSЧ¹ûµÄ»ÃµÆÆ¬£¨Ö÷ҪʹÓÃjQuery¿â£©£¬ÒÔ¼°Æä°ïÖú£¬ÑÝʾ£¬´úÂë¿ÉÒÔÏÂÔØ£¬¹¤¾ßÃâ·ÑʹÓá£
ÏÂÔØµØÖ·£ºhttp://www.codeex.cn/blog/article.asp?id=62 ......

Êղر¾Ò³¹¦ÄܵÄJavascript´úÂë ¼æÈÝIEºÍFirefoxµÄ

< a href =
"#"
 
onClick =
"javascript:window.external.AddFavorite(document.URL,document.title);return
false"
rel=
"sidebar"
> Êղر¾Ò³ </ a >
È¡µÃµ±Ç°Ò³µÄURL: document.URL
È¡µÃµ±Ç°Ò³µÄtitle: document.title
ʵÏÖÔÚFirefoxÖГÊÕ
²Ø±¾Ò ......
© 2009 ej38.com All Rights Reserved. ¹ØÓÚE½¡ÍøÁªÏµÎÒÃÇ | Õ¾µãµØÍ¼ | ¸ÓICP±¸09004571ºÅ