1、數(shù)據(jù)庫(kù)連接。 ASP與Access數(shù)據(jù)庫(kù)連接: <%@ language=VBscript%> <% dim conn,mdbfile mdbfile=server.mappath("數(shù)據(jù)庫(kù)名稱.mdb") set conn=server.createobject("adodb.connection") conn.open "driver={microsoft access driver (*.mdb)};uid=admin;pwd=數(shù)據(jù)庫(kù)密碼;dbq="&mdbfile %> ASP與SQL數(shù)據(jù)庫(kù)連接: <%@ language=VBscript%> <% dim conn set conn=server.createobject("ADODB.connection") con.open "PROVIDER=SQLOLEDB;DATA SOURCE=SQL服務(wù)器名稱或IP地址;UID=sa;PWD=數(shù)據(jù)庫(kù)密碼;DATABASE=數(shù)據(jù)庫(kù)名稱 %> DW中用字符串連接代碼: "Driver={Microsoft Access Driver (*.mdb)};DBQ=數(shù)據(jù)庫(kù)的絕對(duì)路徑" 等做完后再打開數(shù)據(jù)庫(kù)服務(wù)器,把 "Driver={Microsoft Access Driver (*.mdb)};DBQ=數(shù)據(jù)庫(kù)的絕對(duì)路徑" 換成 "Provider=Microsoft.Jet.OLEDB.4.0;data source="& server.mappath("服務(wù)器根目錄下所在數(shù)據(jù)庫(kù)路徑") 并把本地服務(wù)器修改成測(cè)試服務(wù)器 =================================================================================================== 常用SQL語(yǔ)句整理: (1) 數(shù)據(jù)記錄篩選: sql="select * from 數(shù)據(jù)表 where 字段名=字段值 order by 字段名 [desc]" sql="select * from 數(shù)據(jù)表 where 字段名 like ’’%字段值%’’ order by 字段名 [desc]" sql="select top 10 * from 數(shù)據(jù)表 where 字段名 order by 字段名 [desc]" sql="select * from 數(shù)據(jù)表 where 字段名 in (’’值1’’,’’值2’’,’’值3’’)" sql="select * from 數(shù)據(jù)表 where 字段名 between 值1 and 值2" (2) 更新數(shù)據(jù)記錄: sql="update 數(shù)據(jù)表 set 字段名=字段值 where 條件表達(dá)式" sql="update 數(shù)據(jù)表 set 字段1=值1,字段2=值2 …… 字段n=值n where 條件表達(dá)式" (3) 刪除數(shù)據(jù)記錄: sql="delete from 數(shù)據(jù)表 where 條件表達(dá)式" sql="delete from 數(shù)據(jù)表" (將數(shù)據(jù)表所有記錄刪除) (4) 添加數(shù)據(jù)記錄: sql="insert into 數(shù)據(jù)表 (字段1,字段2,字段3 …) values (值1,值2,值3 …)" sql="insert into 目標(biāo)數(shù)據(jù)表 select * from 源數(shù)據(jù)表" (把源數(shù)據(jù)表的記錄添加到目標(biāo)數(shù)據(jù)表) (5) 數(shù)據(jù)記錄統(tǒng)計(jì)函數(shù): AVG(字段名) 得出一個(gè)表格欄平均值 COUNT(*|字段名) 對(duì)數(shù)據(jù)行數(shù)的統(tǒng)計(jì)或?qū)δ骋粰谟兄档臄?shù)據(jù)行數(shù)統(tǒng)計(jì) MAX(字段名) 取得一個(gè)表格欄大的值 MIN(字段名) 取得一個(gè)表格欄最小的值 SUM(字段名) 把數(shù)據(jù)欄的值相加 引用以上函數(shù)的方法: sql="select sum(字段名) as 別名 from 數(shù)據(jù)表 where 條件表達(dá)式" set rs=conn.excute(sql) 用 rs("別名") 獲取統(tǒng)的計(jì)值,其它函數(shù)運(yùn)用同上。 (5) 數(shù)據(jù)表的建立和刪除: CREATE TABLE 數(shù)據(jù)表名稱(字段1 類型1(長(zhǎng)度),字段2 類型2(長(zhǎng)度) …… ) 例:CREATE TABLE tab01(name varchar(50),datetime default now()) DROP TABLE 數(shù)據(jù)表名稱 (永久性刪除一個(gè)數(shù)據(jù)表) =================================================================================================== 網(wǎng)頁(yè)防復(fù)制代碼 <SCRIPT LANGUAGE=javascript> function click() { alert(’需要復(fù)制,請(qǐng)與站長(zhǎng)聯(lián)系!’) } function click1() { if (event.button==2) {alert(’需要復(fù)制,請(qǐng)與站長(zhǎng)聯(lián)系!’) }} function CtrlKeyDown(){ if (event.ctrlKey) {alert(’不當(dāng)?shù)目截悓p害您的系統(tǒng)!’) }} document.onkeydown=CtrlKeyDown; document.onselectstart=click; document. </SCRIPT> =================================================================================================== 改變IE地址欄的IE圖標(biāo) 要先做一個(gè)16*16的icon(圖標(biāo)文件),保存為index.ico。把這個(gè)圖標(biāo)文件上傳到根目錄下并在首頁(yè)<head></head> 之間加上如下代碼:
<link REL = "Shortcut Icon" href="/index.ico"> =================================================================================================== 同意就提交,不同意就回到上一級(jí)頁(yè)面 <input class="button" type="submit" name="rulesubmit" value="同 意" style="height: 23px"> <input class="button" type="button" name="return" value="不同意" style="height: 23px" onclick="javascript:history.go(-1);"> =================================================================================================== 取出數(shù)據(jù)數(shù)里的某個(gè)字段的所有的不重復(fù)的記錄! select distinct(id) from aaa =================================================================================================== 放在inpu的style里! onmouseover="this.focus()" onfocus="this.select()" =================================================================================================== 給TD加邊框: style="border-left:1px #0D73D8 solid;border-top:1px #0D73D8 solid; border-right:1px #0D73D8 solid;border-bottom:1px #0D73D8 solid;" 給TD加距離 style="padding-left:3px;padding-top:3px;padding-right:3px;padding-bootum:3px;" =================================================================================================== 上邊是判斷問一下是否要?jiǎng)h除。下面是一個(gè)鏈接傳值到角本里去! <script language="javascript"> function del_class_1(id){ if (confirm("真的要?jiǎng)h除這個(gè)大類嗎?")) window.location.href="Admin_class_ok.asp?id="+id+"" } </script>
<a href=’javascript:del_class_1(<%=rssort("sortid")%>)’> 實(shí)際上是寫一個(gè)是不要?jiǎng)h除的類 =================================================================================================== 網(wǎng)頁(yè)中顯示中文: <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> =================================================================================================== 網(wǎng)頁(yè)到一定時(shí)間就自動(dòng)跳轉(zhuǎn) <meta HTTP-EQUIV=refresh Content=’1;url=add.asp’> 頁(yè)面定時(shí)轉(zhuǎn)向新的地址 : <meta http-equiv="refresh" content="秒;URL=url"> =================================================================================================== 提交按鈕中加入鏈接: <input name="button" type="submit" value="登陸" onclick="location.href=’a.htm’"> <input type="button" name="Submit" value="按鈕" onClick="javascript:window.open(’checkout.htm’,’_bank’)"> 提交按鈕作鏈接按鈕鏈接到另一個(gè)頁(yè)面 <input type="button" value="跳轉(zhuǎn)" onclick="window.location.href=’xxx.asp’"> =================================================================================================== 下拉菜單自動(dòng)跳轉(zhuǎn)代碼: <select onChange="javascript:window.open(this.options[this.selectedIndex].value)" > =================================================================================================== 定義網(wǎng)頁(yè)角本的語(yǔ)言設(shè)置 <%@ LANGUAGE=ScriptingLanguage %> 必須定義變量的語(yǔ)法 <%Option Explicit%> =================================================================================================== 運(yùn)行regsvr32 scrrun.dll即可。 刪除fso、regsvr32/u scrrun.dll =================================================================================================== 放上去鼠標(biāo)變成小手的代碼: style="cursor: hand" 文本區(qū)域框英文自動(dòng)換行代碼: style="word-break:break-all" 如內(nèi)容超出單元格,則隱藏 style="TABLE-LAYOUT: fixed" 讓彈出窗口總是在最上面: <body onblur="this.focus();"> =================================================================================================== 不要滾動(dòng)條 讓豎條沒有: <body style=’overflow:scroll;overflow-y:hidden’> </body> 讓橫條沒有: <body style=’overflow:scroll;overflow-x:hidden’> </body> 兩個(gè)都去掉: <body scroll="no"> </body> =================================================================================================== 去掉圖片鏈接點(diǎn)擊后周圍的虛線 <a href="#" onFocus="this.blur()"><img src="logo.jpg" border=0></a> =================================================================================================== 電子郵件處理提交表單 <form name="form1" method="post" action="mailto:****@***.com" enctype="text/plain"> <input type=submit> </form> =================================================================================================== 如何設(shè)定打開頁(yè)面的大小 <body onload="top.resizeTo(300,200);"> =================================================================================================== 在頁(yè)面中如何加入不是滿鋪的背景圖片,拉動(dòng)頁(yè)面時(shí)背景圖不動(dòng) <html><head> <STYLE> body {background-image:url(logo.gif); background-repeat:no-repeat; background-position:center } </STYLE> </head> <body bgproperties="fixed" > </body> </html> =================================================================================================== 文本豎排方式 <style type="text/css"> <!-- .shupai {Writing-mode:tb-rl} --> </style> =================================================================================================== 超鏈接去虛線邊框 在鏈接中加上onfocus="this.blur()" =================================================================================================== 網(wǎng)頁(yè)搜索關(guān)鍵字 頭里插入 <META NAME="keywords" CONTENT="xxxx,xxxx,xxx,xxxxx,xxxx,"> =================================================================================================== 收藏夾圖標(biāo) <link rel = "Shortcut Icon" href="favicon.ico"> =================================================================================================== 隱藏滾動(dòng)條: <body style="overflow-x:hidden;overflow-y:hidden"> =================================================================================================== 鏈接到: response.redirect"login.asp" location.href="xx.asp" onClick="window.location=’login.asp’" onClick="window.open(’’)" =================================================================================================== 取得IP: userip = Request.ServerVariables("HTTP_X_FORWARDED_FOR") If userip = "" Then userip = Request.ServerVariables("REMOTE_ADDR") sql="update feedbak set hit=hit+1 where id="&request("id") conn.execute(sql) =================================================================================================== CSS樣式: a:link:表示已經(jīng)鏈接; a:hover:表示鼠標(biāo)移上鏈接時(shí); a:active:表示鏈接激活時(shí); a:visited:表示己點(diǎn)擊過的鏈接。 =================================================================================================== 跳出對(duì)話框鏈接: javascript:alert(’lajflsjpjwg’) 后退:javascript:history.back(1) 關(guān)閉窗口:javascript:window.close(); 窗口還原 function restore(){ window.moveTo(8,8); window.resizeTo(screen.width-24,screen.availHeight-24); } head區(qū)是指首頁(yè)HTML代碼的<head>和</head>之間的內(nèi)容。 必須加入的標(biāo)簽 =================================================================================================== 所有的javascript的調(diào)用盡量采取外部調(diào)用: <SCRIPT LANGUAGE="javascript" SRC="script/xxxxx.js"></SCRIPT> =================================================================================================== flash透明: 在flash的源代碼中加上:<param name="wmode" value="transparent"> =================================================================================================== 表格透明: style="FILTER: alpha(opacity=72)" =================================================================================================== 禁止頁(yè)面正文選取 : <body oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false"onmouseup="document.selection.empty()"> =================================================================================================== 頁(yè)面定時(shí)刷新:
<meta http-equiv="Refresh" content="秒" > =================================================================================================== 設(shè)為首頁(yè) : <A href=# onclick="this.style.behavior=’url(#default#homepage)’;this.setHomePage(’url’);">設(shè)為首頁(yè)</A> 添加收藏 : <A href="javascript:window.external.AddFavorite(’url’,’title’)">收藏本站</A> =================================================================================================== 文字滾動(dòng): 插入邊框?yàn)?的1行1列的表格,在表格中輸入文字,選中文字, 按ctrl+t輸入marquee direction="up", 回車即可讓文字在表格區(qū)域內(nèi)向上滾動(dòng)。 (right、down可用于讓文字或圖象向右及向下滾動(dòng),修改html原代碼還可以得到需要的滾動(dòng)速度。 =================================================================================================== 表單驗(yàn)正: <SCRIPT language=javascript> function checkform(theform){ if(theform.name.value==""){ alert("姓名不能為空!"); theform.name.focus(); return false; } if(theform.tel.value==""){ alert("電話不能為空!"); theform.tel.focus(); return false; } } </SCRIPT> =================================================================================================== 細(xì)線表格: style="BORDER-COLLAPSE: collapse;" =================================================================================================== 滾動(dòng)條顏色代碼: BODY{ SCROLLBAR-FACE-COLOR: #FFFFFF; SCROLLBAR-HIGHLIGHT-COLOR: #FFFFFF; SCROLLBAR-SHADOW-COLOR: #FFFFFF; SCROLLBAR-3DLIGHT-COLOR: #FFCBC8; SCROLLBAR-ARROW-COLOR: #FFFFFF; SCROLLBAR-TRACK-COLOR: #FFFFFF; SCROLLBAR-DARKSHADOW-COLOR: #FFCBC8; SCROLLBAR-BASE-COLOR: #FFFFFF } =================================================================================================== 連續(xù)的英文或者一堆感嘆號(hào)!!!不會(huì)自動(dòng)換行的問題: 只要在CSS中定義了如下句子,可保網(wǎng)頁(yè)不會(huì)再被撐開了 table{table-layout: fixed;} td{word-break: break-all; word-wrap:break-word;} 注釋一下: 1.第一條table{table-layout: fixed;},此樣式可以讓表格中有!!!(感嘆號(hào))之類的字符時(shí)自動(dòng)換行。 2.td{word-break: break-all},一般用這句這OK了,但在有些特殊情況下還是會(huì)撐開,因此需要再加上后面一句{word-wrap:break-word;}就可以解決。此樣式可以讓表格中的一些連續(xù)的英文單詞自動(dòng)換行。 =================================================================================================== 用marquee做的滾動(dòng)字幕語(yǔ)法: align=# | top | middle| bottom //對(duì)齊方式) BEHAVIOR=ALTERNATE | SCROLL | SLIDE //移動(dòng)的方式 BGCOLOR=color//底色區(qū)域顏色 DIRECTION=DOWN | LEFT | RIGHT | UP //移動(dòng)的方向 Loop=n //循環(huán)次數(shù)(默認(rèn)是循環(huán)不止) Scrolldelay=milliseconds//延時(shí) height=# width=# //區(qū)域面積 hspace=# vspace=# //空白區(qū)域 scrollamount=# //移動(dòng)的速度 〈marquee align=top behavior=ALTERNATE BGCOLOR=#000000 height=60 width=433 scrollamount=5〉〈/marquee〉 =================================================================================================== 延遲跳轉(zhuǎn): <meta http-equiv=refresh content=’3; url=javascript:window.close();’> =================================================================================================== 層在flash上面: < param name="wmode" value="opaque" > =================================================================================================== 以圖片方式插視頻: <IMG height=240 loop=infinite dynsrc=http://amedia.efu.com.cn/EFUADD0001.rmvb width=320> =================================================================================================== 定義鼠標(biāo): body{cursor: url(cur.ani或cur);} =================================================================================================== 示日期:
<script language="javascript"><!-- today=new Date(); var week; var date; if(today.getDay()==0) week="星期日" if(today.getDay()==1) week="星期一" if(today.getDay()==2) week="星期二" if(today.getDay()==3) week="星期三" if(today.getDay()==4) week="星期四" if(today.getDay()==5) week="星期五" if(today.getDay()==6) week="星期六" date=(today.getYear())+"年"+(today.getMonth()+1)+"月"+today.getDate()+"日"+" " document.write("<span style=’font-size: 9pt;’>"+date+week+"</span>"); // --> </script> =================================================================================================== 如何避免別人把你的網(wǎng)頁(yè)放在框架中 : <script language=“javascript”><!--if (self!=top){top.location=self.location;} -->< /script> =================================================================================================== 消除ie6自動(dòng)出現(xiàn)的圖像工具欄: 設(shè)置 GALLERYIMG屬性為false或no . <IMG SRC="mypicture.jpg" HEIGHT="100px" WIDTH="100px" GALLERYIMG="no"> =================================================================================================== 背景音樂: <bgsound src=地址 loop="-1"> =================================================================================================== 水平線: <hr width="長(zhǎng)度" size="高度" color="顏色代碼" noshade> noshade為有無陰影 =================================================================================================== 禁止鼠標(biāo)右鍵: 在<body>標(biāo)簽中加入 <body oncontextmenu="return false"> =================================================================================================== 狀態(tài)欄連接說明: <A HREF="鏈接到某處" onmouseOver="window.status=’連接說明’;return true;" onMouseOut="window.status=’ ’;">某某鏈接</a> ================================================================================================== 可以選擇加入的標(biāo)簽: 1.設(shè)定網(wǎng)頁(yè)的到期時(shí)間。一旦網(wǎng)頁(yè)過期,必須到服務(wù)器上重新調(diào)閱: <META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT"> 2.禁止瀏覽器從本地機(jī)的緩存中調(diào)閱頁(yè)面內(nèi)容: <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> 3.用來防止別人在框架里調(diào)用你的頁(yè)面: <META HTTP-EQUIV="Window-target" CONTENT="_top"> 4.自動(dòng)跳轉(zhuǎn): <META HTTP-EQUIV="Refresh" CONTENT="5;URL=http://www.yahoo.com"> 5.網(wǎng)頁(yè)搜索機(jī)器人向?qū)?用來告訴搜索機(jī)器人哪些頁(yè)面需要索引,哪些頁(yè)面不需要索引: <META NAME="robots" CONTENT="none"> CONTENT的參數(shù)有all,none,index,noindex,follow,nofollow。默認(rèn)是all。 =================================================================================================== 公司版權(quán)注釋: <!--- The site is designed by Maketown,Inc 06/2000 ---> 網(wǎng)頁(yè)顯示字符集L 簡(jiǎn)體中文:<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312"> 繁體中文:<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=BIG5"> 英 語(yǔ):<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> 網(wǎng)頁(yè)制作者信息: <META name="author" content="webmaster@maketown.com"> 網(wǎng)站簡(jiǎn)介: <META NAME="DESCRIPTION" CONTENT="xxxxxxxxxxxxxxxxxxxxxxxxxx"> 搜索關(guān)鍵字: <META NAME="keywords" CONTENT="xxxx,xxxx,xxx,xxxxx,xxxx,"> 網(wǎng)頁(yè)的css規(guī)范: <LINK href="style/style.css" rel="stylesheet" type="text/css"> (參見目錄及命名規(guī)范) =================================================================================================== 溢出欄的設(shè)制: visible:超出的部分照樣顯示; hidden:超出的部分隱藏; scrool:不管有否超出,都顯示滾動(dòng)條; auto:有超出時(shí)才出現(xiàn)滾動(dòng)條; onMouseOver:鼠標(biāo)移到目標(biāo)上; onMouseUp:按下鼠標(biāo)再放開左鍵時(shí); onMouseOut:鼠標(biāo)移開時(shí); onMouseDown:按下鼠標(biāo)時(shí)(不需要放開左鍵); onClink:點(diǎn)擊時(shí); onDblClick:雙擊時(shí); onLoad:載入網(wǎng)頁(yè)時(shí); onUnload:離開頁(yè)面時(shí); onResize:當(dāng)瀏覽者改變?yōu)g覽窗口的大小時(shí); onScroll:當(dāng)瀏覽者拖動(dòng)滾動(dòng)條的時(shí)。 =================================================================================================== 圖片寬度: <script language="javascript"> <!-- var flag=false; function DrawImage(ckp){ var image=new Image(); image.src=ckp.src; if(image.width>0 && image.height>0) {flag=true; if(image.width>120){ ckp.width=120; }else{ ckp.width=image.width; } ckp.alt=image.width+"×"+image.height; } } //--> </script> I’ll be Back 22:18:06 <img src="<%=formPath%>/<%=rs("photoname")%>" border="0" onload="javascript:DrawImage(this);"> =================================================================================================== 截取字符是否加... function formatStr(str,len) if(len(str)>len) str = left(str,len) + "..." end if formatStr = str end function =================================================================================================== 服務(wù)器上如何定義連接: MM_www_STRING ="driver={Microsoft access Driver (*.mdb)};dbq=" & server.mappath("../data/www.mdb") =================================================================================================== 列表/菜單 onchange="location=this.options[this.selectedIndex].value" <iframe id="frm" src="k-xinwen.html" scrolling="no" width="314" height="179"></iframe> <img src="xiangshang.jpg" onMouseOver="sf=setInterval(’frm.scrollBy(0,-2)’,1)" onMouseOut="clearInterval(sf)" width="31" height="31"> <img src="xiangxia.jpg" onMouseOver="sf=setInterval(’frm.scrollBy(0,2)’,1)" onMouseOut="clearInterval(sf)" width="31" height="31" > reurl=server.htmlencode(request.ServerVariables("HTTP_REFERER")) =================================================================================================== CSS文字陰影(定義在<TD>中) .abc{ FILTER: dropshadow(color=#666666, offx=1, offy=1, positive=1); FONT-FAMILY: "宋體"; FONT-SIZE: 9pt;COLOR: #ffffff; } =================================================================================================== 禁止圖片下載: <A HREF="javascript:void(0)" onMouseover="alert(’對(duì)不起,此圖片不能下載!’)"> <IMG SRC="2.gif" Align="center" Border="0" width="99" height="50"></A> =================================================================================================== 從數(shù)據(jù)庫(kù)里取出值把它們都放在一個(gè)字符串內(nèi)!用逗號(hào)連接起來! dim str str="" do while not rs.eof if instr(str,rs(TypeID))=0 then str=str&rs("typeid")&"," else end if ’response.end rs.movenext loop =================================================================================================== 去掉循環(huán)字符串最后一個(gè)逗號(hào) str=left(str,len(str)-1) =================================================================================================== 關(guān)閉輸入法 <input style="ime-mode:disabled"> =================================================================================================== 永遠(yuǎn)都會(huì)帶著框架 <script language="JavaScript"><!-- if (window == top)top.location.href = "frames.htm"; //frames.htm為框架網(wǎng)頁(yè) // --></script> =================================================================================================== 網(wǎng)頁(yè)將不能被另存為 <noscript><iframe src=*.html></iframe></noscript> =================================================================================================== 刪除時(shí)確認(rèn) <a href="javascript:if(confirm("確實(shí)要?jiǎng)h除嗎?"))location="boos.asp?&areyou=刪除&page=1"">刪除</a> =================================================================================================== 取得控件的絕對(duì)位置 //Javascript <script language="Javascript"> function getIE(e){ var t=e.offsetTop; var l=e.offsetLeft; while(e=e.offsetParent){ t+=e.offsetTop; l+=e.offsetLeft; } alert("top="+t+"/nleft="+l); } </script> //VBScript <script language="VBScript"><!-- function getIE() dim t,l,a,b set a=document.all.img1 t=document.all.img1.offsetTop l=document.all.img1.offsetLeft while a.tagName<>"BODY" set a = a.offsetParent t=t+a.offsetTop l=l+a.offsetLeft wend msgbox "top="&t&chr(13)&"left="&l,64,"得到控件的位置" end function --></script> =================================================================================================== 光標(biāo)是停在文本框文字的最后 <script language="javascript"> function cc() { var e = event.srcElement; var r =e.createTextRange(); r.moveStart("character",e.value.length); r.collapse(true); r.select(); } </script> <input type=text name=text1 value="123" onfocus="cc()"> =================================================================================================== 判斷上一頁(yè)的來源 javascript: document.referrer =================================================================================================== 屏蔽功能鍵Shift,Alt,Ctrl <script> function look(){ if(event.shiftKey) alert("禁止按Shift鍵!"); //可以換成ALT CTRL } document.onkeydown=look; </script> =================================================================================================== 網(wǎng)頁(yè)不會(huì)被緩存 <META HTTP-EQUIV="pragma" CONTENT="no-cache"> <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate"> <META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT"> 或者<META HTTP-EQUIV="expires" CONTENT="0"> =================================================================================================== 怎樣讓表單沒有凹凸感? <input type=text style="border:1 solid #000000"> 或 <input type=text style="border-left:none; border-right:none; border-top:none; border-bottom: 1 solid #000000"></textarea> =================================================================================================== .<div><span>&<layer>的區(qū)別? <div>(division)用來定義大段的頁(yè)面元素,會(huì)產(chǎn)生轉(zhuǎn)行 <span>用來定義同一行內(nèi)的元素,跟<div>的唯一區(qū)別是不產(chǎn)生轉(zhuǎn)行 <layer>是ns的標(biāo)記,ie不支持,相當(dāng)于<div> =================================================================================================== 不要滾動(dòng)條? 讓豎條沒有: <body style="overflow:scroll;overflow-y:hidden"> </body> 讓橫條沒有: <body style="overflow:scroll;overflow-x:hidden"> </body> 兩個(gè)都去掉?更簡(jiǎn)單了 <body scroll="no"> </body> =================================================================================================== 在打開的子窗口刷新父窗口的代碼里如何寫? window.opener.location.reload() =================================================================================================== 獲得一個(gè)窗口的大小 document.body.clientWidth; document.body.clientHeight =================================================================================================== 日期減去天數(shù)等于第二個(gè)日期 <script language=Javascript> function cc(dd,dadd) { //可以加上錯(cuò)誤處理 var a = new Date(dd) a = a.valueOf() a = a - dadd * 24 * 60 * 60 * 1000 a = new Date(a) alert(a.getFullYear() + "年" + (a.getMonth() + 1) + "月" + a.getDate() + "日") } cc("12/23/2002",2) </script> =================================================================================================== 選擇了哪一個(gè)Radio <HTML><script language="vbscript"> function checkme() for each ob in radio1 if ob.checked then window.alert ob.value next end function </script><BODY> <INPUT name="radio1" type="radio" value="style" checked>Style <INPUT name="radio1" type="radio" value="barcode">Barcode <INPUT type="button" value="check" onclick="checkme()"> </BODY></HTML> =================================================================================================== 腳本永不出錯(cuò) <SCRIPT LANGUAGE="JavaScript"> <!-- Hide function killErrors() { return true; } window.onerror = killErrors; // --> </SCRIPT> =================================================================================================== 頁(yè)面進(jìn)入和退出的特效 進(jìn)入頁(yè)面<meta http-equiv="Page-Enter" content="revealTrans(duration=x, transition=y)"> 推出頁(yè)面<meta http-equiv="Page-Exit" content="revealTrans(duration=x, transition=y)"> 這個(gè)是頁(yè)面被載入和調(diào)出時(shí)的一些特效。duration表示特效的持續(xù)時(shí)間,以秒為單位。transition表示使用哪種特效,取值為1-23:
0 矩形縮小
1 矩形擴(kuò)大
2 圓形縮小
3 圓形擴(kuò)大
4 下到上刷新
5 上到下刷新
6 左到右刷新
7 右到左刷新
8 豎百葉窗
9 橫百葉窗
10 錯(cuò)位橫百葉窗
11 錯(cuò)位豎百葉窗
12 點(diǎn)擴(kuò)散
13 左右到中間刷新
14 中間到左右刷新
15 中間到上下
16 上下到中間
17 右下到左上
18 右上到左下
19 左上到右下
20 左下到右上
21 橫條
22 豎條
23 以上22種隨機(jī)選擇一種 |