最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

js技巧收集(200多個(gè)) 超強(qiáng)推薦第2/2頁(yè)

 更新時(shí)間:2007年02月03日 00:00:00   作者:  

150.根據(jù)標(biāo)簽獲得一組對(duì)象
var coll = document.all.tags("DIV");
if (coll!=null)
{
for (i=0; i<coll.length; i++) 
...
}//

151.實(shí)現(xiàn)打印預(yù)覽及打印
<OBJECT classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2" height=0 id=wb name=wb width=0></OBJECT> 
<input type=button value=打印預(yù)覽 onclick="wb.execwb(7,1)">
<input type=button onClick=document.all.wb.ExecWB(6,1) value="打印">//

152.不通過(guò)form,直接通過(guò)名字引用對(duì)象
<INPUT TYPE="text" NAME="gg" value=aaaaa>
<SCRIPT LANGUAGE="JavaScript">
<!--
alert(document.all.gg.value)
//-->
</SCRIPT>//

153.使鼠標(biāo)滾輪失效
function document.onmousewheel()
{
 return false;
}//

154.創(chuàng)建彈出窗口
<SCRIPT LANGUAGE="JScript">
  var oPopup = window.createPopup();
  var oPopupBody = oPopup.document.body;
  oPopupBody.innerHTML = "Display some <B>HTML</B> here.";
  oPopup.show(100, 100, 200, 50, document.body);
</SCRIPT>//

155.取得鼠標(biāo)所在處的對(duì)象
var obj = document.elementFromPoint(event.x,event.y);//

156.獲得左邊的對(duì)象
<INPUT TYPE="text" NAME="gg"><INPUT TYPE="text" NAME="bb" 

onclick="this.previousSibling.value='guoguo'">//

157.定位鼠標(biāo)
document.all.hint_layer.style.left  = event.x+document.body.scrollLeft+10;
document.all.hint_layer.style.top  = event.y+document.body.scrollTop+10;//

158.向下拉框指定位置添加項(xiàng)目
var op  = document.createElement("OPTION");
document.all.selected_items.children(index).insertAdjacentElement("BeforeBegin",op);
op.text  = document.all.all_items[i].text;
op.value = document.all.all_items[i].value;//

 
159.判斷一個(gè)窗口是否已經(jīng)打開(kāi),如果已經(jīng)打開(kāi),則關(guān)閉之
var a;
if(a) 
 a.close();
else
 a=window.open('','','');//

160.動(dòng)態(tài)創(chuàng)建一個(gè)標(biāo)簽
newElem  = document.createElement("DIV");
newElem.id = "hint_layer";
document.body.appendChild(newElem);
document.all.hint_layer.innerText="guoguo";//

161.標(biāo)題欄
document.title//

162.背景圖片
<body style="BACKGROUND-ATTACHMENT: fixed" background="img/bgfix.gif" ></body>//背景圖片不動(dòng)

<STYLE TYPE="text/css">
<!--
BODY {background-image:img/bgchild.jpg;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;}
-->
</STYLE>//背景圖片居中

163.設(shè)置透明效果
document.form.xxx.filters.alpha.opacity=0~100//

164.定義方法
var dragapproved=false;
document.onmouseup=new Function("dragapproved = false");//

165.將數(shù)字轉(zhuǎn)化為人民幣大寫(xiě)形式
function convertCurrency(currencyDigits) {
// Constants:
 var MAXIMUM_NUMBER = 99999999999.99;
 // Predefine the radix characters and currency symbols for output:
 var CN_ZERO = "零";
 var CN_ONE = "壹";
 var CN_TWO = "貳";
 var CN_THREE = "叁";
 var CN_FOUR = "肆";
 var CN_FIVE = "伍";
 var CN_SIX = "陸";
 var CN_SEVEN = "柒";
 var CN_EIGHT = "捌";
 var CN_NINE = "玖";
 var CN_TEN = "拾";
 var CN_HUNDRED = "佰";
 var CN_THOUSAND = "仟";
 var CN_TEN_THOUSAND = "萬(wàn)";
 var CN_HUNDRED_MILLION = "億";
 var CN_SYMBOL = "人民幣";
 var CN_DOLLAR = "元";
 var CN_TEN_CENT = "角";
 var CN_CENT = "分";
 var CN_INTEGER = "整";

// Variables:
 var integral; // Represent integral part of digit number.
 var decimal; // Represent decimal part of digit number.
 var outputCharacters; // The output result.
 var parts;
 var digits, radices, bigRadices, decimals;
 var zeroCount;
 var i, p, d;
 var quotient, modulus;

// Validate input string:
 currencyDigits = currencyDigits.toString();
 if (currencyDigits == "") {
  alert("Empty input!");
  return "";
 }
 if (currencyDigits.match(/[^,.\d]/) != null) {
  alert("Invalid characters in the input string!");
  return "";
 }
 if ((currencyDigits).match(/^((\d{1,3}(,\d{3})*(.((\d{3},)*\d{1,3}))?)|(\d+(.\d+)?))$/) == null) {
  alert("Illegal format of digit number!");
  return "";
 }

// Normalize the format of input digits:
 currencyDigits = currencyDigits.replace(/,/g, ""); // Remove comma delimiters.
 currencyDigits = currencyDigits.replace(/^0+/, ""); // Trim zeros at the beginning.
 // Assert the number is not greater than the maximum number.
 if (Number(currencyDigits) > MAXIMUM_NUMBER) {
  alert("Too large a number to convert!");
  return "";
 }

// http://www.knowsky.com/ Process the coversion from currency digits to characters:
 // Separate integral and decimal parts before processing coversion:
 parts = currencyDigits.split(".");
 if (parts.length > 1) {
  integral = parts[0];
  decimal = parts[1];
  // Cut down redundant decimal digits that are after the second.
  decimal = decimal.substr(0, 2);
 }
 else {
  integral = parts[0];
  decimal = "";
 }
 // Prepare the characters corresponding to the digits:
 digits = new Array(CN_ZERO, CN_ONE, CN_TWO, CN_THREE, CN_FOUR, CN_FIVE, CN_SIX, CN_SEVEN, CN_EIGHT, 

CN_NINE);
 radices = new Array("", CN_TEN, CN_HUNDRED, CN_THOUSAND);
 bigRadices = new Array("", CN_TEN_THOUSAND, CN_HUNDRED_MILLION);
 decimals = new Array(CN_TEN_CENT, CN_CENT);
 // Start processing:
 outputCharacters = "";
 // Process integral part if it is larger than 0:
 if (Number(integral) > 0) {
  zeroCount = 0;
  for (i = 0; i < integral.length; i++) {
   p = integral.length - i - 1;
   d = integral.substr(i, 1);
   quotient = p / 4;
   modulus = p % 4;
   if (d == "0") {
    zeroCount++;
   }
   else {
    if (zeroCount > 0)
    {
     outputCharacters += digits[0];
    }
    zeroCount = 0;
    outputCharacters += digits[Number(d)] + radices[modulus];
   }
   if (modulus == 0 && zeroCount < 4) {
    outputCharacters += bigRadices[quotient];
   }
  }
  outputCharacters += CN_DOLLAR;
 }
 // Process decimal part if there is:
 if (decimal != "") {
  for (i = 0; i < decimal.length; i++) {
   d = decimal.substr(i, 1);
   if (d != "0") {
    outputCharacters += digits[Number(d)] + decimals[i];
   }
  }
 }
 // Confirm and return the final output string:
 if (outputCharacters == "") {
  outputCharacters = CN_ZERO + CN_DOLLAR;
 }
 if (decimal == "") {
  outputCharacters += CN_INTEGER;
 }
 outputCharacters = CN_SYMBOL + outputCharacters;
 return outputCharacters;
}//

 
166.xml數(shù)據(jù)島綁定表格
<html>
<body>
<xml id="abc" src="test.xml"></xml>
<table border='1' datasrc='#abc'>
<thead>
<td>接收人</td>
<td>發(fā)送人</td>
<td>主題</td>
<td>內(nèi)容</td>
</thead>
<tfoot>
<tr><th>表格的結(jié)束</th></tr>
</tfoot>
<tr>
<td><div datafld="to"></div></td>
<td><div datafld="from"></div></td>
<td><div datafld="subject"></div></td>
<td><div datafld="content"></div></td>
</tr>
</table>
</body>
</html>

//cd_catalog.xml
<?xml version="1.0" encoding="ISO-8859-1" ?> 
 <!--  Edited with XML Spy v4.2 
  --> 
 <CATALOG>
 <CD>
  <TITLE>Empire Burlesque</TITLE> 
  <ARTIST>Bob Dylan</ARTIST> 
  <COUNTRY>USA</COUNTRY> 
  <COMPANY>Columbia</COMPANY> 
  <PRICE>10.90</PRICE> 
  <YEAR>1985</YEAR> 
  </CD>
 <CD>
  <TITLE>Hide your heart</TITLE> 
  <ARTIST>Bonnie Tyler</ARTIST> 
  <COUNTRY>UK</COUNTRY> 
  <COMPANY>CBS Records</COMPANY> 
  <PRICE>9.90</PRICE> 
  <YEAR>1988</YEAR> 
  </CD>
 <CD>
  <TITLE>Greatest Hits</TITLE> 
  <ARTIST>Dolly Parton</ARTIST> 
  <COUNTRY>USA</COUNTRY> 
  <COMPANY>RCA</COMPANY> 
  <PRICE>9.90</PRICE> 
  <YEAR>1982</YEAR> 
  </CD>
 <CD>
  <TITLE>Still got the blues</TITLE> 
  <ARTIST>Gary Moore</ARTIST> 
  <COUNTRY>UK</COUNTRY> 
  <COMPANY>Virgin records</COMPANY> 
  <PRICE>10.20</PRICE> 
  <YEAR>1990</YEAR> 
  </CD>
</CATALOG>
//


167.以下組合可以正確顯示漢字
================================
xml保存編碼 xml頁(yè)面指定編碼
ANSI  gbk/GBK、gb2312
Unicode  unicode/Unicode
UTF-8  UTF-8
================================

 
168.XML操作
<xml id="xmldata" src="/data/books.xml">
<div id="guoguo"></div>
<script>
var x=xmldata.recordset //取得數(shù)據(jù)島中的記錄集
if(x.absoluteposition < x.recordcount) //如果當(dāng)前的絕對(duì)位置在最后一條記錄之前
{
 x.movenext();     //向后移動(dòng)
 x.moveprevious();    //向前移動(dòng)
 x.absoluteposition=1;   //移動(dòng)到第一條記錄
 x.absoluteposition=x.recordcount;//移動(dòng)到最后一條記錄,注意記錄集x.absoluteposition是從1到記錄集記錄的個(gè)

數(shù)的
 guoguo.innerText=xmldso.recordset("field_name"); //從中取出某條記錄
}
</script>

 
169.動(dòng)態(tài)修改CSS的另一種方式
this.runtimeStyle.cssText = "color:#990000;border:1px solid #cccccc";//

170.正則表達(dá)式
匹配中文字符的正則表達(dá)式: [\u4e00-\u9fa5]

匹配雙字節(jié)字符(包括漢字在內(nèi)):[^\x00-\xff]

應(yīng)用:計(jì)算字符串的長(zhǎng)度(一個(gè)雙字節(jié)字符長(zhǎng)度計(jì)2,ASCII字符計(jì)1)

String.prototype.len=function(){return this.replace([^\x00-\xff]/g,"aa").length;}

匹配空行的正則表達(dá)式:\n[\s| ]*\r

匹配HTML標(biāo)記的正則表達(dá)式:/<(.*)>.*<\/\1>|<(.*) \/>/ 

匹配首尾空格的正則表達(dá)式:(^\s*)|(\s*$)

應(yīng)用:javascript中沒(méi)有像vbscript那樣的trim函數(shù),我們就可以利用這個(gè)表達(dá)式來(lái)實(shí)現(xiàn),如下:

String.prototype.trim = function()
{
    return this.replace(/(^\s*)|(\s*$)/g, "");
}

////////利用正則表達(dá)式分解和轉(zhuǎn)換IP地址:

下面是利用正則表達(dá)式匹配IP地址,并將IP地址轉(zhuǎn)換成對(duì)應(yīng)數(shù)值的Javascript程序:

function IP2V(ip)
{
 re=/(\d+)\.(\d+)\.(\d+)\.(\d+)/g  //匹配IP地址的正則表達(dá)式
if(re.test(ip))
{
return RegExp.$1*Math.pow(255,3))+RegExp.$2*Math.pow(255,2))+RegExp.$3*255+RegExp.$4*1
}
else
{
 throw new Error("Not a valid IP address!")
}
}

不過(guò)上面的程序如果不用正則表達(dá)式,而直接用split函數(shù)來(lái)分解可能更簡(jiǎn)單,程序如下:

var ip="10.100.20.168"
ip=ip.split(".")
alert("IP值是:"+(ip[0]*255*255*255+ip[1]*255*255+ip[2]*255+ip[3]*1))

匹配Email地址的正則表達(dá)式:\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*

匹配網(wǎng)址URL的正則表達(dá)式:http://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?

//////////利用正則表達(dá)式去除字串中重復(fù)的字符的算法程序:

var s="abacabefgeeii"
var s1=s.replace(/(.).*\1/g,"$1")
var re=new RegExp("["+s1+"]","g")
var s2=s.replace(re,"") 
alert(s1+s2)  //結(jié)果為:abcefgi

思路是使用后向引用取出包括重復(fù)的字符,再以重復(fù)的字符建立第二個(gè)表達(dá)式,取到不重復(fù)的字符,兩者串連。這個(gè)方

法對(duì)于字符順序有要求的字符串可能不適用。

//////////得用正則表達(dá)式從URL地址中提取文件名的javascript程序,如下結(jié)果為page1

s="http://www.9499.net/page1.htm"
s=s.replace(/(.*\/){0,}([^\.]+).*/ig,"$2")
alert(s)

/////////利用正則表達(dá)式限制網(wǎng)頁(yè)表單里的文本框輸入內(nèi)容:

用正則表達(dá)式限制只能輸入中文:onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')" 

onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\u4E00-\u9FA5]/g,'')

)"

用正則表達(dá)式限制只能輸入全角字符: onkeyup="value=value.replace(/[^\uFF00-\uFFFF]/g,'')" 

onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\uFF00-\uFFFF]/g,'')

)"

用正則表達(dá)式限制只能輸入數(shù)字:onkeyup="value=value.replace(/[^\d]/g,'') 

"onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))"

用正則表達(dá)式限制只能輸入數(shù)字和英文:onkeyup="value=value.replace(/[\W]/g,'') 

"onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))"

 
171.設(shè)置和使用cookie
<HTML>
<BODY>
設(shè)置與讀取 cookies...<BR>
寫(xiě)入cookie的值<input type=text name=gg>
<INPUT TYPE = BUTTON Value = "設(shè)置cookie" onClick = "Set()">
<INPUT TYPE = BUTTON Value = "讀取cookie" onClick = "Get()"><BR>
<INPUT TYPE = TEXT NAME = Textbox>
</BODY>
<SCRIPT LANGUAGE="JavaScript">
function Set()
{
var Then = new Date() 
Then.setTime(Then.getTime() + 60*1000 ) //60秒
document.cookie = "Cookie1="+gg.value+";expires="+ Then.toGMTString() 
}

function Get()

 var cookieString = new String(document.cookie)
 var cookieHeader = "Cookie1="
 var beginPosition = cookieString.indexOf(cookieHeader)
 if (beginPosition != -1)
 {
  document.all.Textbox.value = cookieString.substring(beginPosition  + cookieHeader.length) 
 }
 else
  document.all.Textbox.value = "Cookie 未找到!" 
}
</SCRIPT> 
</HTML>//

 
172.取月的最后一天
function getLastDay(year,month)
{
 //取年
 var new_year = year;
 //取到下一個(gè)月的第一天,注意這里傳入的month是從1~12 
 var new_month = month++;
 //如果當(dāng)前是12月,則轉(zhuǎn)至下一年
 if(month>12)
 {
  new_month -=12;
  new_year++;
 }
 var new_date = new Date(new_year,new_month,1);
 return (new Date(new_date.getTime()-1000*60*60*24)).getDate();
}//

173.判斷當(dāng)前的焦點(diǎn)是組中的哪一個(gè)
for(var i=0;i<3;i++)
 if(event.srcElement==bb[i])
  break;//

 

174.實(shí)現(xiàn)類(lèi)
package com.baosight.view.utils;
import javax.servlet.jsp.tagext.TagSupport;
import javax.servlet.http.HttpSession;
public class Mytag extends TagSupport 
{
  public int doStartTag() throws javax.servlet.jsp.JspException 
  {
    boolean canAccess = false;
    HttpSession session= pageContext.getSession();
    if (canAccess) 
    {
      return EVAL_BODY_INCLUDE;
    }
    else 
    {
      return this.SKIP_BODY;
    }
  }
}

175.在web.xml中添加定義
  <taglib>
    <taglib-uri>guoguo</taglib-uri>
    <taglib-location>/WEB-INF/abc.tld</taglib-location>
  </taglib>


176.標(biāo)簽庫(kù)中定義abc.tld
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" 
"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
<taglib>
 <tlibversion>1.0</tlibversion>
 <jspversion>1.1</jspversion>
 <shortname>hr</shortname>
 <uri>guoguo</uri>
 <info>Extra 3 Tag Library</info>
 <tag>
  <name>mytag</name>
  <tagclass>com.baosight.view.utils.Mytag</tagclass>
  <attribute>
   <name>id2</name>
   <required>true</required>
            <rtexprvalue>true</rtexprvalue>
  </attribute>
 </tag>
</taglib>


177.在使用自定義標(biāo)簽的頁(yè)面中加入自己定義的標(biāo)簽,
<%@ taglib uri="guoguo" prefix="guoguo" %>
//自己定義標(biāo)簽

 
178.顯示帶邊框的集
<fieldset style="border:1px gray solid;width:100px">
  <legend>查詢(xún)條件</legend>
dfdfdf
</fieldset>//


179.【文件(F)】菜單中的命令的實(shí)現(xiàn)

1、〖打開(kāi)〗命令的實(shí)現(xiàn)
[格式]:document.execCommand("open")
[說(shuō)明]這跟VB等編程設(shè)計(jì)中的webbrowser控件中的命令有些相似,大家也可依此琢磨琢磨。
[舉例]在<body></body>之間加入:
<a href="###" onclick=document.execCommand("open")>打開(kāi)</a>

2、〖使用 記事本 編輯〗命令的實(shí)現(xiàn)
[格式]:location.replace("view-source:"+location)
[說(shuō)明]打開(kāi)記事本,在記事本中顯示該網(wǎng)頁(yè)的源代碼。
[舉例]在<body></body>之間加入:
<a href="###" onclick=location.replace("view-source:"+location)>使用 記事本編輯</a>

3、〖另存為〗命令的實(shí)現(xiàn)
[格式]:document.execCommand("saveAs")
[說(shuō)明]將該網(wǎng)頁(yè)保存到本地盤(pán)的其它目錄!
[舉例]在<body></body>之間加入:
<a href="###" onclick=document.execCommand("saveAs")>另存為</a>

4、〖打印〗命令的實(shí)現(xiàn)
[格式]:document.execCommand("print")
[說(shuō)明]當(dāng)然,你必須裝了打印機(jī)!
[舉例]在<body></body>之間加入:
<a href="###" onclick=document.execCommand("print")>打印</a>

5、〖關(guān)閉〗命令的實(shí)現(xiàn)
[格式]:window.close();return false
[說(shuō)明]將關(guān)閉本窗口。
[舉例]在<body></body>之間加入:
<a href="###" onclick=window.close();return false)>關(guān)閉本窗口</a>

180.【編輯(E)】菜單中的命令的實(shí)現(xiàn)

〖全選〗命令的實(shí)現(xiàn)
[格式]:document.execCommand("selectAll")
[說(shuō)明]將選種網(wǎng)頁(yè)中的全部?jī)?nèi)容!
[舉例]在<body></body>之間加入:
<a href="###" onclick=document.execCommand("selectAll")>全選</a>

181.【查看(V)】菜單中的命令的實(shí)現(xiàn)

1、〖刷新〗命令的實(shí)現(xiàn)
[格式]:location.reload() 或 history.go(0)
[說(shuō)明]瀏覽器重新打開(kāi)本頁(yè)。
[舉例]在<body></body>之間加入:
<a href="###" onclick=location.reload()>刷新</a>
或加入:
<a href="###" onclick=history.go(0)>刷新</a>

2、〖源文件〗命令的實(shí)現(xiàn)
[格式]:location.replace("view-source:"+location)
[說(shuō)明]查看該網(wǎng)頁(yè)的源代碼。
[舉例]在<body></body>之間加入:
<a href="###" onclick=location.replace("view-source:"+location)>查看源文件</a>

3、〖全屏顯示〗命令的實(shí)現(xiàn)
[格式]:window.open(document.location, "url", "fullscreen")
[說(shuō)明]全屏顯示本頁(yè)。
[舉例]在<body></body>之間加入:
<a href="###" onclick=window.open(document.location,"url","fullscreen")>全屏顯示</a>

182.【收藏(A)】菜單中的命令的實(shí)現(xiàn)

1、〖添加到收藏夾〗命令的實(shí)現(xiàn)
[格式]:window.external.AddFavorite('url', '“網(wǎng)站名”)
[說(shuō)明]將本頁(yè)添加到收藏夾。
[舉例]在<body></body>之間加入:
<a href="javascript:window.external.AddFavorite('http://oh.jilinfarm.com', '胡明新的個(gè)人主頁(yè)')">添加到收

藏夾</a>

2、〖整理收藏夾〗命令的實(shí)現(xiàn)
[格式]:window.external.showBrowserUI("OrganizeFavorites",null)
[說(shuō)明]打開(kāi)整理收藏夾對(duì)話框。
[舉例]在<body></body>之間加入:
<a href="###" onclick=window.external.showBrowserUI("OrganizeFavorites",null)>整理收藏夾</a>

183.【工具(T)】菜單中的命令的實(shí)現(xiàn)

〖internet選項(xiàng)〗命令的實(shí)現(xiàn)
[格式]:window.external.showBrowserUI("PrivacySettings",null)
[說(shuō)明]打開(kāi)internet選項(xiàng)對(duì)話框。
[舉例]在<body></body>之間加入:
<a href="###" onclick=window.external.showBrowserUI("PrivacySettings",null)>internet選項(xiàng)</a>

184.【工具欄】中的命令的實(shí)現(xiàn)

1、〖前進(jìn)〗命令的實(shí)現(xiàn)
[格式]history.go(1) 或 history.forward()
[說(shuō)明]瀏覽器打開(kāi)后一個(gè)頁(yè)面。
[舉例]在<body></body>之間加入:
<a href="###" onclick=history.go(1)>前進(jìn)</a>
或加入:
<a href="###" onclick=history.forward()>前進(jìn)</a>

2、〖后退〗命令的實(shí)現(xiàn)
[格式]:history.go(-1) 或 history.back()
[說(shuō)明]瀏覽器返回上一個(gè)已瀏覽的頁(yè)面。
[舉例]在<body></body>之間加入:
<a href="###" onclick=history.go(-1)>后退</a>
或加入:
<a href="###" onclick=history.back()>后退</a>

3、〖刷新〗命令的實(shí)現(xiàn)
[格式]:document.reload() 或 history.go(0)
[說(shuō)明]瀏覽器重新打開(kāi)本頁(yè)。
[舉例]在<body></body>之間加入:
<a href="###" onclick=location.reload()>刷新</a>
或加入:
<a href="###" onclick=history.go(0)>刷新</a>

185.其它命令的實(shí)現(xiàn)
〖定時(shí)關(guān)閉本窗口〗命令的實(shí)現(xiàn)
[格式]:settimeout(window.close(),關(guān)閉的時(shí)間)
[說(shuō)明]將關(guān)閉本窗口。
[舉例]在<body></body>之間加入:
<a href="###" onclick=settimeout(window.close(),3000)>3秒關(guān)閉本窗口</a>


【附】為了方便讀者,下面將列出所有實(shí)例代碼,你可以把它們放到一個(gè)html文件中,然后預(yù)覽效果。
<a href="###" onclick=document.execCommand("open")>打開(kāi)</a><br>
<a href="###" onclick=location.replace("view-source:"+location)>使用 記事本編輯</a><br>
<a href="###" onclick=document.execCommand("saveAs")>另存為</a><br>
<a href="###" onclick=document.execCommand("print")>打印</a><br>
<a href="###" onclick=window.close();return false)>關(guān)閉本窗口</a><br>
<a href="###" onclick=document.execCommand("selectAll")>全選</a><br>
<a href="###" onclick=location.reload()>刷新</a> <a href="###" onclick=history.go(0)>刷新</a><br>
<a href="###" onclick=location.replace("view-source:"+location)>查看源文件</a><br>
<a href="###" onclick=window.open(document.location,"url","fullscreen")>全屏顯示</a><br>
<a href="javascript:window.external.AddFavorite('http://homepage.yesky.com', '天極網(wǎng)頁(yè)陶吧')">添加到收藏

夾</a><br>
<a href="###" onclick=window.external.showBrowserUI("OrganizeFavorites",null)>整理收藏夾</a><br>
<a href="###" onclick=window.external.showBrowserUI("PrivacySettings",null)>internet選項(xiàng)</a><br>
<a href="###" onclick=history.go(1)>前進(jìn)1</a> <a href="###" onclick=history.forward()>前進(jìn)2</a><br>
<a href="###" onclick=history.go(-1)>后退1</a> <a href="###" onclick=history.back()>后退2</a><br>
<a href="###" onclick=settimeout(window.close(),3000)>3秒關(guān)閉本窗口</a><br>

 
186.給DHTML中的標(biāo)簽添加一個(gè)新的屬性,可以隨意加
<BODY onload="alert(a1.epass)">
<input type=text name="a1" epass="zhongguo">
</BODY>//

 
187.xmlhttp技術(shù)
<BODY> 此方法是通過(guò)XMLHTTP對(duì)象從服務(wù)器獲取XML文檔,示例如下。 
 <input type=button value="加載XML文檔" onclick="getData('data.xml')" > 
 <script language="JavaScript" > 
 function getDatal(url){ 
 var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");//創(chuàng)建XMLHTTPRequest對(duì)象 
 xmlhttp.open("GET",url,false,"","");//使用HTTP GET初始化HTTP請(qǐng)求 
 xmlhttp.send("");//發(fā)送HTTP請(qǐng)求并獲取HTTP響應(yīng) 
 return xmlhttp.responseXML;//獲取XML文檔 
 } 
 </script > 
</BODY>//

188.服務(wù)器端通過(guò)request.getReader()獲得傳入的字符串

189.在java中使用正則表達(dá)式
java.util.regex.Pattern p = 

java.util.regex.Pattern.compile("\\d+|.\\d+|\\d+.\\d*|(E|\\d+E|.\\d+E|\\d+.\\d*E)((\\+|-)\\d|\\d)\\d*");
java.util.regex.Matcher m = p.matcher("12.E+3");
boolean result = m.matches();//

 
190.給下拉框分組
<SELECT>
<OPTGROUP LABEL="堿性金屬">
<OPTION>鋰 (Li)</OPTION>
<OPTION>納 (Na)</OPTION>
<OPTION>鉀 (K)</OPTION>
</OPTGROUP>
<OPTGROUP LABEL="鹵素">
<OPTION>氟 (F)</OPTION>
<OPTION>氯 (Cl)</OPTION>
<OPTION>溴 (Br)</OPTION>
</OPTGROUP>
</SELECT>//

191.加注音
<RUBY>
基準(zhǔn)文本
<RT>注音文本
</RUBY>//

 
192.加刪除線
<S>此文本將帶刪除線顯示。</S>//

193.取frame中的event事件
document.frames("workspace").event.keyCode//

194.是彈出方法的定義
String.prototype.trim=function()
{
 return this.replace(/(^\s*)|(\s*$)/g, "");
}
alert("  ".trim)//


195.防止網(wǎng)頁(yè)被包含
if (window != window.top)
top.location.href = location.href;//

 
196.讓網(wǎng)頁(yè)一直在frame里面
if(window==window.top)
{
 document.body.innerHTML="<center><h1>請(qǐng)通過(guò)正常方式訪問(wèn)本頁(yè)面!</h1></center>";
 //window.close();
}//

 
197.加為首頁(yè)
<SCRIPT>
function fnSet(){
oHomePage.setHomePage(location.href);
event.returnValue = false;
}
</SCRIPT>
<IE:HOMEPAGE ID="oHomePage" style="behavior:url(#default#homepage)"/>//

 
198.xml數(shù)據(jù)島操作
<HTML>
  <HEAD><Title>HTML中的數(shù)據(jù)島中的記錄集</Title></HEAD>
  <body bkcolor=#EEEEEE text=blue bgcolor="#00FFFF">
  <Table align=center width="100%"><TR><TD align="center">
  <h5><b><font size="4" color="#FF0000">HTML中的XML數(shù)據(jù)島記錄編輯與添加    </font></b></h5>
  </TD></TR></Table>
  <HR>
  酒店名稱(chēng):<input type=text datasrc=#theXMLisland DataFLD=NAME size="76"><BR>
  地址:<input type=text datasrc=#theXMLisland DataFLD=Address size="76"><BR>
  主頁(yè):<input type=text datasrc=#theXMLisland DataFLD=HomePage size="76"><BR>
  電子郵件:<input type=text datasrc=#theXMLisland DataFLD=E-Mail size="76"><BR>
  電話:<input type=text datasrc=#theXMLisland DataFLD=TelePhone size="76"><BR>
  級(jí)別:<input type=text datasrc=#theXMLisland DataFLD=Grade size="76"><HR>
  <input id="first" TYPE=button value="<< 第一條記錄"     onclick="theXMLisland.recordset.moveFirst()">
  <input id="prev" TYPE=button value="<上一條記錄"   onclick="theXMLisland.recordset.movePrevious()">  
  <input id="next" TYPE=button value="下一條記錄>" onclick="theXMLisland.recordset.moveNext()">  
  <input id="last" TYPE=button value="最后一條記錄>>" onclick="theXMLisland.recordset.moveLast()">&nbsp;  
  <input id="Add" TYPE=button value="添加新記錄" onclick="theXMLisland.recordset.addNew()">  

  <XML ID="theXMLisland">
  <HotelList>
  <Hotel>
  <Name>四海大酒店</Name>
  <Address>海魂路1號(hào)</Address>
  <HomePage>www.sihaohotel.com.cn</HomePage> 
  <E-Mail>master@sihaohotel.com.cn</E-Mail>
  <TelePhone>(0989)8888888</TelePhone> 
  <Grade>五星級(jí)</Grade>
  </Hotel>
  <Hotel>
  <Name>五湖賓館</Name>
  <Address>東平路99號(hào)</Address>
  <HomePage>www.wuhu.com.cn</HomePage> 
  <E-Mail>web@wuhu.com.cn</E-Mail>
  <TelePhone>(0979)1111666</TelePhone> 
  <Grade>四星級(jí)</Grade>
  </Hotel>
  <Hotel>
  <Name>“大沙漠”賓館</Name>
  <Address>留香路168號(hào)</Address>
  <HomePage>www.dashamohotel.com.cn</HomePage> 
  <E-Mail>master@dashamohotel.com.cn</E-Mail>
  <TelePhone>(0989)87878788</TelePhone> 
  <Grade>五星級(jí)</Grade>
  </Hotel>
  <Hotel>
  <Name>“畫(huà)眉鳥(niǎo)”大酒店</Name>
  <Address>血海飄香路2號(hào)</Address>
  <HomePage>www.throstlehotel.com.cn</HomePage> 
  <E-Mail>chuliuxiang@throstlehotel.com.cn</E-Mail>
  <TelePhone>(099)9886666</TelePhone> 
  <Grade>五星級(jí)</Grade>
  </Hotel>
  </HotelList> 
  </XML>

  </body>  
  </HTML> //xml數(shù)據(jù)島中添加記錄


-------------------------------
  The following list is a sample of the properties and methods that you use to access nodes in an XML 

document.

Property/    Method Description 
XMLDocument Returns a reference to the XML Document Object Model (DOM) exposed by the object.  

documentElement  Returns the document root of the XML document. 
childNodes    Returns a node list containing the children of a node (if any). 
item     Accesses individual nodes within the list through an index. Index values are zero-based, so 

item(0) returns the first child node. 
text     Returns the text content of the node. 

The following code shows an HTML page containing an XML data island. The data island is contained within 

the <XML> element.

<HTML>
  <HEAD>
    <TITLE>HTML with XML Data Island</TITLE>
  </HEAD>
  <BODY>
    <P>Within this document is an XML data island.</P>

    <XML ID="resortXML">
      <resorts>
        <resort code='1'>Adventure Works</resort>
        <resort>Alpine Ski House</resort>
      </resorts>
    </XML>

  </BODY>
</HTML>
For an example, you can cut and paste this sample line of code: 

resortXML.XMLDocument.documentElement.childNodes.item(1).text//讀取頁(yè)面上的XML數(shù)據(jù)島中的數(shù)據(jù)
resortXML.documentElement.childNodes.item(0).getAttribute("code")//讀取頁(yè)面上的XML數(shù)據(jù)島中的數(shù)據(jù)
resortXML.documentElement.childNodes[0].getAttribute("code")//讀取頁(yè)面上的XML數(shù)據(jù)島中的數(shù)據(jù)

199.模式窗口
父窗口
var url="aaa.jsp";
var 

data=showModalDialog(url,null,"dialogHeight:400px;dialogHeight:600px;center:yes;help:No;status:no;resizab

le:Yes;edge:sunken");
if(data)
 alert(data.value);

子窗口
var data=new Object();
data.value1="china";
window.returnValue=data;
window.close();

 
200.動(dòng)態(tài)設(shè)置事件,帶參數(shù)
<INPUT TYPE="text" NAME="a1">
<SCRIPT LANGUAGE="JavaScript">
<!--
function hah(para)
{
 alert(para)
}
a1.onclick=function()
{
 hah('canshu ')
}
//a1.attachEvent("onclick",function(){hah('參數(shù)')});
//-->
</SCRIPT>//

 
201.將url轉(zhuǎn)化為16進(jìn)制形式
 var ret = '';

 for(var i=0; i < str.length; i++)
 {
  var ch = str.charAt(i);
  var code = str.charCodeAt(i);

  if(code < 128 && ch != '[' && ch != '\'' && ch != '=')
  {
   ret += ch;
  }
  else 
  {
   ret += "[" + code.toString(16) + "]";
  }
 }
 return ret;//


202.打開(kāi)新的窗口并將新打開(kāi)的窗口設(shè)置為活動(dòng)窗口
var newWin=window.open("xxxx");
newWin.focus();//

 
203.容錯(cuò)腳本
JS中遇到腳本錯(cuò)誤時(shí)不做任何操作:window.onerror = doNothing; 
指定錯(cuò)誤句柄的語(yǔ)法為:window.onerror = handleError
function handleError(message, URI, line)
{// 提示用戶(hù),該頁(yè)可能不能正確回應(yīng)
return true; // 這將終止默認(rèn)信息
}//在頁(yè)面出錯(cuò)時(shí)進(jìn)行操作

204.JS中的窗口重定向:
window.navigate("http://www.sina.com.cn");//

205.防止鏈接文字折行
document.body.noWrap=true;//

206.判斷字符是否匹配.
string.match(regExpression)//

207.
href="javascript:document.Form.Name.value='test';void(0);"http://不能用onClick="javacript:document.Form.Name.v

alue='test';return false;"

當(dāng)使用inline方式添加事件處理腳本事,有一個(gè)被包裝成匿名函數(shù)的過(guò)程,也就是說(shuō)
onClick="javacript:document.Form.Name.value='test';return false;"被包裝成了:
functoin anonymous()
{
    document.Form.Name.value='test';return false;
}
做為A的成員函數(shù)onclick。
而href="javascript:document.Form.Name.value='test';void(0);"相當(dāng)于執(zhí)行全局語(yǔ)句,這時(shí)如果使用return語(yǔ)句會(huì)

報(bào)告在函數(shù)外使用return語(yǔ)句的錯(cuò)誤。


208.進(jìn)行頁(yè)面放大
<P onmouseover="this.style.zoom='200%'" onmouseout="this.style.zoom='normal'">
sdsdsdsdsdsdsdsds
</p>//

209.放置在頁(yè)面的最右邊
<input type="text" value='bu2'  style="float:right">//

210.通過(guò)style來(lái)控制隔行顯示不同顏色
<style>
tr{
bgcolor:expression(this.bgColor=((this.rowIndex)%2==0 )? 'white' : 'yellow');
}
</style>
<table id="oTable" width="100" border="1" style="border-collapse:collapse;">
<tr><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td></tr>
</table>//

211.全屏最大化
newwindow=window.open("","","scrollbars")
if (document.all)
{
 newwindow.moveTo(0,0)
 newwindow.resizeTo(screen.width,screen.height)
}//

212.根據(jù)名字解析xml中的節(jié)點(diǎn)值
var XMLDoc=new ActiveXObject("MSXML");
XMLDoc.url="d:/abc.xml";
aRoot=XMLDoc.root;
a1.innerText=aRoot.children.item("name").text;//

 
213.在頁(yè)面上解析xml的值
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk/html/5996c682-3472-4b03-9fb0-1e08

fcccdf35.asp
//

214.看一個(gè)字符串里面有多少個(gè)回車(chē)符,返回值是一個(gè)數(shù)組
var s=value.match(/\n/g);if(s)if(s.length==9){alert('10行了');return false;}//

215.獲得asc碼
var s='aa';
alert(s.charCodeAt(1))//

216.文字居右對(duì)齊
<input type="text" value="123" style="text-align:right">//

217.判斷一個(gè)方法是否存在
function pageCallback(response){
 alert(response);
}
if(pageCallback)
 alert(1)//

 
218.判斷一個(gè)變量是否定義
if(typeof(a)=="undefined")
{
 alert()
}//

 
219.javascript執(zhí)行本機(jī)的可執(zhí)行程序,需設(shè)置為可信或者降低IE安全級(jí)別
<script>
function exec (command) {
    window.oldOnError = window.onerror;
    window._command = command;
    window.onerror = function (err) {
      if (err.indexOf('utomation') != -1) {
        alert('命令已經(jīng)被用戶(hù)禁止!'); 
        return true;
      }
      else return false;
    };
    var wsh = new ActiveXObject('WScript.Shell');
    if (wsh)
      wsh.Run(command);
    window.onerror = window.oldOnError;
  }
</script>
調(diào)用方式
<a href="javascript:" onclick="exec('D:/test.bat')">測(cè)試</a>//

220.彈出新頁(yè)面,關(guān)閉舊頁(yè)面,不彈出提示框
 var w=screen.availWidth-10;
   var h=screen.availHeight-10;
   var swin=window.open("/mc/mc/message_management.jsp", 

"BGSMbest","scrollbars=yes,status,location=0,menubar=0,toolbar=0,resizable=no,top=0,left=0,height="+h+",w

idth="+w);
   window.opener=null;
   window.close();//

221.能輸入的下拉框
<span>
<input name="Department1" id="Department1" style=" border-right:0;width:130" autocomplete="off">
<span style="width:150;overflow:hidden">
<select  style="width:150;margin-left:-130" onChange="Department1.value=value"> 
<option value=""></option>
<option value="asdfasfadf">asdfasfadf</option>
<option value="546546">546546</option></select> //

 
222.在方法中定義全局變量
function globalVar (script) {
        eval(script);//all navigators
  //window.execScript(script); //for ie only 
}
globalVar('window.haha = "../system";');
alert(haha);//在方法中定義全局變量,其中的haha就是全局變量了

223.顯示一個(gè)對(duì)象的全部的屬性和屬性的值
var a=new Object();
a.name='a1';
a.***='mail'
for(var p in a)
{
 alert(p+"="+a[p])
}//

 
224.16進(jìn)制轉(zhuǎn)換成10進(jìn)制
var n = parseInt("2AE",16);//這里將16進(jìn)制的 2AE 轉(zhuǎn)成 10 進(jìn)制數(shù),得到 n 的值是 686


225.復(fù)制粘貼
<BODY>
<input type="file" name='a1'><input type="button" value='復(fù)制粘貼' onclick="haha()"><div id="aa"></div>
<SCRIPT LANGUAGE="JavaScript">
<!--
function haha()
{
 clipboardData.setData("Text",a1.value);
 aa.innerText=clipboardData.getData("Text");
}
//-->
</SCRIPT>
</BODY>//

226.獲得對(duì)象類(lèi)型
switch (object.constructor){
   case Date:
   ...
   case Number:
   ...
   case String:
   ...
   case MyObject:
   ...
   default: 
   ...
}//

 
227.圖片加載失敗時(shí)重新加載圖片
<img src="aa.gif" onerror="this.src='aa.gif'">//

228.
//font_effect.htc
<PUBLIC:ATTACH EVENT="onmouseover" ONEVENT="glowit()" /> 
<PUBLIC:ATTACH EVENT="onmouseout" ONEVENT="noglow()" /> 
<SCRIPT LANGUAGE="JScript"> 
//定義一個(gè)保存字體顏色的變量 
var color;
function glowit() 

 color=element.style.backgroundColor;
 element.style.backgroundColor='white'

function noglow() 

  element.style.backgroundColor=color

</SCRIPT> 

//abc.css
tr{behavior:url(font_effect.htc);}

229.可以通過(guò)css和htc改變表格的顏色,僅IE支持
//xxx.html
<link rel="stylesheet" type="text/css" href="abc.css">
<TABLE border='1'  id="a1">
<TR style="background-color:red">
 <TD>1</TD>
 <TD>2</TD>
 <TD>3</TD>
</TR>
<TR style="background-color:yellow">
 <TD>4</TD>
 <TD>5</TD>
 <TD>6</TD>
</TR>
</TABLE>//

230.在頁(yè)面上畫(huà)點(diǎn)
function a(x,y,color)
{
 document.write("<img border='0' style='position: absolute; left: "+(x+20)+"; top: 

"+(y+20)+";background-color: "+color+"' width=1 height=1>")
}// 

 231.自動(dòng)關(guān)閉網(wǎng)頁(yè)
<script LANGUAGE="javascript">
<!--
setTimeout('window.close();', 10000); //60秒后關(guān)閉
// -->
</script>
<p align="center">本頁(yè)10秒后自動(dòng)關(guān)閉,請(qǐng)注意刷新頁(yè)面</p>

相關(guān)文章

最新評(píng)論

武威市| 富宁县| 诏安县| 友谊县| 秦皇岛市| 邹平县| 洪江市| 临海市| 江门市| 从江县| 宁安市| 新邵县| 隆昌县| 平乐县| 江孜县| 西丰县| 广平县| 尚志市| 察雅县| 胶州市| 南漳县| 卢氏县| 宁陵县| 南阳市| 大港区| 宜良县| 灌阳县| 综艺| 农安县| 保定市| 双桥区| 莆田市| 通辽市| 加查县| 巴里| 渝北区| 南通市| 双流县| 彭水| 宁强县| 宜阳县|