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);
Ïà¹ØÎĵµ£º
///ÏÂÃæÊǶÔAccessµÄÁ´½Ó
function getCountfromDB() {
//ÒÔµ±Ç°Ò³ÃæÎļþΪ»ù´¡£¬ÕÒµ½ÎļþËùÔڵľø¶Ô·¾¶¡£
var filePath = location.href.substring(0, location.href.indexOf("Cnt.htm"));
var path = filePath + "MyData.mdb";
//È¥µ ......
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ÎÞ±êÌâÒ³</title>
</head>
<body>
<form id ......
JavaScript µÄ³É¹¦ÈÃÈ˽ò½òÀÖµÀ£¬Îª Web ÍøÒ³±àд JavaScript ´úÂëÒѾÊÇËùÓÐ Web Éè¼ÆÊ¦µÄ»ù±¾¹¦£¬ÕâÃÅÓÐȤµÄÓïÑÔÔ̲Ø×ÅÐí¶à²»ÎªÈËÊìÖªµÄ¶«Î÷£¬¼´Ê¹¶àÄêµÄ JavaScript ³ÌÐòÔ±£¬Ò²Î´ÄÜÍêÈ«³Ô͸¡£±¾ÎÄ´Ó7¸ö·½Ãæ½²Êö JavaScript ÖÐÄÇЩÄã²»ºÜÊìÖªµ«·Ç³£ÊµÓõļ¼ÇÉ¡£
¼òÂÔÓï¾ä
JavaScript ¿ÉÒÔʹÓüòÂÔÓï¾ä¿ìËÙ´´½¨¶ÔÏóºÍÊý× ......
1 Ò»ÆðÀ§»óʼÓÚ±äÁ¿µÄ×÷ÓÃÓò
ÇëÏÈ¿´ÏÂÃæµÄ´úÂ룺
ʾÀý1£º
var message = " this is a very simple function ";
function simpleFunc(){
alert(message);
}
±³ºóµÄµÀÀí´ó¼Ò¶¼¶®£¨Èç¹û²»¶®µÄ¿ÉÒÔÏȱðÍù ......