Ò׽ؽØÍ¼Èí¼þ¡¢µ¥Îļþ¡¢Ãâ°²×°¡¢´¿ÂÌÉ«¡¢½ö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 Access´úÂë²Î¿¼

///ÏÂÃæÊǶÔAccessµÄÁ´½Ó
function getCountfromDB() {
    //ÒÔµ±Ç°Ò³ÃæÎļþΪ»ù´¡£¬ÕÒµ½ÎļþËùÔڵľø¶Ô·¾¶¡£
    var filePath = location.href.substring(0, location.href.indexOf("Cnt.htm"));
    var path = filePath + "MyData.mdb";
    //È¥µ ......

[JavaScript] JavaScriptÖг£¼ûÒÉÎÊÕûÀí

JavaScriptÖеÄ"=="ºÍ"===" (ת)
Ê×ÏÈ£¬== equality µÈͬ£¬=== identity ºãµÈ£¨ÑϸñÏàµÈ£©¡£
==£¬ Á½±ßÖµÀàÐͲ»Í¬µÄʱºò£¬ÒªÏȽøÐÐÀàÐÍת»»£¬ÔٱȽϡ£
===£¬²»×öÀàÐÍת»»£¬ÀàÐͲ»Í¬µÄÒ»¶¨²»µÈ¡£
ÏÂÃæ·Ö±ð˵Ã÷£º
ÏÈ˵ ===£¬Õâ¸ö±È½Ï¼òµ¥¡£ÏÂÃæµÄ¹æÔòÓÃÀ´ÅжÏÁ½¸öÖµÊÇ·ñ===ÏàµÈ£º
1¡¢Èç¹ûÀàÐͲ»Í¬£¬¾Í[²»ÏàµÈ]
2 ......

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

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

JavascriptÎļþ¼°Îļþ¼Ð²Ù×÷

Ò»¡¢¹¦ÄÜʵÏÖºËÐÄ£ºFileSystemObject ¶ÔÏó 
    ÒªÔÚjavascriptÖÐʵÏÖÎļþ²Ù×÷¹¦ÄÜ£¬Ö÷Òª¾ÍÊÇÒÀ¿¿FileSystemobject¶ÔÏó¡£
¶þ¡¢FileSystemObject±à³Ì 
ʹÓÃFileSystemObject ¶ÔÏó½øÐбà³ÌºÜ¼òµ¥£¬Ò»°ãÒª¾­¹ýÈçϵIJ½Ö裺 ´´½¨FileSystemObject¶ÔÏó¡¢Ó¦ÓÃÏà¹Ø·½·¨¡¢·ÃÎʶÔÏóÏà¹ØÊôÐÔ ¡£ ......

Javascript :¡¡JSQL£¬SQLÎÞ´¦²»ÔÚ£¬

ÉÏ»ØËµµ½£¬²Ù×÷Object Array
Æäʵ»¹¿ÉÒÔÕâÑù²Ù×÷£º
var Room = [
            {
                ID: 'bot',
                name: 'test' ......
© 2009 ej38.com All Rights Reserved. ¹ØÓÚE½¡ÍøÁªÏµÎÒÃÇ | Õ¾µãµØÍ¼ | ¸ÓICP±¸09004571ºÅ