網(wǎng)頁(yè)經(jīng)典代碼
1. 將徹底屏蔽鼠標(biāo)右鍵,無(wú)右鍵菜單
<body oncontextmenu=window.event.returnvalue=false>
也可以用于網(wǎng)頁(yè)中Table框架中
<table border oncontextmenu=return(false)><td>no</table>
2.取消選取、防止復(fù)制
<body onselectstart=return false>
3.不準(zhǔn)粘貼
<body onpaste=return false>
4.防止復(fù)制
<body oncopy=return false; oncut=return false;>
5.IE地址欄前換成自己的圖標(biāo)
<link rel=Shortcut Icon href=favicon.ico>
說(shuō)明:關(guān)于favicon.ico文件的制作。你可以先在FW中做一個(gè)圖片,屬于你自己站點(diǎn)一個(gè)小圖標(biāo)。然后在ACD see將文件屬性改為*.ico,然后將你做的*.ICO文件傳到你的服務(wù)器目錄中,然后就可以使用以上代碼來(lái)實(shí)現(xiàn),當(dāng)別人登陸你的站點(diǎn)時(shí),地址欄里使用的就是你自定義的圖標(biāo)了。
6.可以在收藏夾中顯示出你的圖標(biāo)
<link rel=Bookmark href=favicon.ico>
說(shuō)明:制作方法和上面的一樣。只是顯示的方式不同,這個(gè)是在別人收藏你的網(wǎng)頁(yè)地址時(shí)顯示的個(gè)性圖標(biāo)。
7.關(guān)閉輸入法
<input style=ime-mode:disabled>
說(shuō)明:這段代碼是在表格提交時(shí)用到的。也就是在輸入數(shù)據(jù)時(shí)不可以使用其他輸入法模式。
8.永遠(yuǎn)都會(huì)帶著框架
<script language=javascript><!--
if (window == top)top.location.href = frames.htm;// -->
說(shuō)明:frames.htm為你的網(wǎng)頁(yè),這也是保護(hù)頁(yè)面的一種方法
9.防止被人frame
<SCRIPT LANGUAGE=javascript><!--
if (top.location != self.location)top.location=self.location;
// --></SCRIPT>
10.網(wǎng)頁(yè)將不能被另存為
<noscript><iframe src=*.html></iframe></noscript>
說(shuō)明:<noscirpt>的用法很廣,其中一條就是可以使JS廣告失效。
11.查源文件
<input type=button value=查看網(wǎng)頁(yè)源代碼
onclick=window.location = 'view-source:'+ target=_blank>
http://bbs.055.cn/test.htm';>
12.COOKIE腳本記錄,有很大的用處哦
function get_cookie(Name) {
var search = Name + =
var returnvalue = ;
if (documents.cookie.length > 0) {
offset = documents.cookie.indexOf(search)
if (offset != -1) { // if cookie exists
offset += search.length
// set index of beginning of value
end = documents.cookie.indexOf(;, offset);
// set index of end of cookie value
if (end == -1)
end = documents.cookie.length;
returnvalue=unescape(documents.cookie.substring(offset, end))
}
}
return returnvalue;
}
function loadpopup(){
if (get_cookie('popped')=='){
openpopup()
documents.cookie=popped=yes
}
}
說(shuō)明:以上是JS代碼,請(qǐng)自己加起始符和結(jié)束符
13.內(nèi)框架<IFRAME>使用
Iframe標(biāo)記的使用格式是:
<iframe src=URL width=x height=x scrolling=[OPTION] frameborder=x
name=main></iframe>
src:文件的路徑,既可是HTML文件,也可以是文本、ASP等
width、height:內(nèi)部框架區(qū)域的寬與高;
scrolling:當(dāng)SRC的指定的HTML文件在指定的區(qū)域不顯不完時(shí),滾動(dòng)選項(xiàng),如果設(shè)置為NO,則不出現(xiàn)滾動(dòng)條;如為Auto:則自動(dòng)出現(xiàn)滾動(dòng)條;如為Yes,則顯示; FrameBorder:區(qū)域邊框的寬度,為了讓“內(nèi)部框架“與鄰近的內(nèi)容相融合,常設(shè)置為0。
name:框架的名字,用來(lái)進(jìn)行識(shí)別。
比如: 當(dāng)你想用父框架控制內(nèi)部框架時(shí),可以使用: target=框架的名字來(lái)控制。
例子:<iframe name=mm src=
http://bbs.055.cn;; width=100% height=100% marginwidth=0 marginheight= ... ot; frameborder=0 scrolling=no></iframe>
14.自動(dòng)跳轉(zhuǎn)
在源代碼中的…加入如下代碼:
<meta http-equiv=refreshcontent=3;URL=
http://bbs.055.cn; charset=gb2312>
說(shuō)明:content=3 表示3秒刷新到URL
15.如何改變鏈接的鼠標(biāo)形狀
只需在鏈接上加上這一代碼就行的了
或者跟上面的用CSS寫(xiě)也行
style=cursor:hand style=cursor:crosshair
style=cursor:text style=cursor:wait
style=cursor:move style=cursor:help
style=cursor:e-resize
style=cursor:n-resize
style=cursor:nw-resize style=cursor:w-resize
style=cursor:s-resize
style=cursor:se-resize
style=cursor:sw-resize
以上代碼你只需要加到連接或是頁(yè)面的style區(qū)里就可以實(shí)現(xiàn)鼠標(biāo)多樣化。
16.全屏顯示
<form>
<div align=center>
<input type=BUTTON name=FullScreen value=全屏顯示 onClick=window.open(document.location, 'big', 'fullscreen=yes')>
</div>
</form>
把它放到區(qū)中。
17.設(shè)為首頁(yè)
<script language=javascript>
<!--
function defaul_home(){
this.home.style.behavior='url(#default#homepage)';this.home.setHomePage(
http://bbs.055.cn/';
}
var focusok=false;
if (navigator.appName == Netscape{
focusok=true;
}
vers=navigator.appVersion;
if (navigator.appName == Microsoft Internet Explorer{
pos=vers.lastIndexOf('.');
vers=vers.substring(pos-1,vers.length);
}
proper_version=parseFloat(vers);
if(proper_version>=5){
focusok=true;
}
function launchstock1(htmlurl){
var stock=window.open(htmlurl,stock,top=2,left=2,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,
resizable=no,width=700,height=510;
if(focusok){
stock.focus();
}
return true;
}
function launchstock(){
var stock=window.open(,stock,top=2,left=2,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,
resizable=no,width=700,height=510;
if(focusok){
stock.focus();
}
return true;
}
// -->
<a href=# name=home onClick=defaul_home(); title===E代時(shí)光==>設(shè)為首頁(yè)</a>
18.這里是加入收藏夾的代碼
<a href=# onClick=window.external.addFavorite(
http://bbs.055.cn';.'拂曉雅閣') target=_self title=拂曉雅閣>加入收藏夾</a>
19.flash圖片效果
以下代碼加入?yún)^(qū)域
<SCRIPT language=javascript>
<!--
function makevisible(cur,which){
if (which==0)
cur.filters.alpha.opacity=100
else
cur.filters.alpha.opacity=20
}
//-->
</SCRIPT>
以下代碼加入?yún)^(qū)域
<img src=
http://bbs.055.cn/images/logo.gif;; style=filte ... nbsp;onMouseOver=makevisible(this,0) onMouseOut=makevisible(this,1) width=63 height=56> //圖片地址請(qǐng)自己改
20.load 進(jìn)度條
<table cellspacing=0 cellpadding=0 bgcolor=#FFFFFF width=40% id=P><tr><td>
<table cellspacing=0 cellpadding=0 bgcolor=#0000FF height=18 id=Q><tr><td></td></tr></table></td></tr></table>
</center>
<script language=javascript>
var R = 0; load();
function load() {R = R + 2; Q.style.width = R + %; time= setTimeout(load(),50);
if (R > 100) {clearTimeout(time); P.style.width=0}}
27 全屏
<script language=javascript>
window.open('index.asp',','fullscreen=1');
21.背景圖片滾動(dòng)
<body scroll=no background=images/bg.jpg link=#00FF00 alink=#FF0000 vlink=#00FF00 bgcolor=#000080 topmargin=8>
<script language=javascript>
var backgroundOffset = 0;
var bgObject = eval('document.body');
function scrollBG(maxSize) {backgroundOffset = backgroundOffset + 1;
if (backgroundOffset > maxSize) backgroundOffset = 0;
bgObject.style.backgroundPosition = 0 + backgroundOffset;}
var ScrollTimer = window.setInterval(scrollBG(410), 20)
22.網(wǎng)頁(yè)不會(huì)被緩存
HTMl網(wǎng)頁(yè)
<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>
ASP網(wǎng)頁(yè)
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.cachecontrol = no-cache
PHP網(wǎng)頁(yè)
header(Expires: Mon, 26 Jul 1997 05:00:00 GMT;
header(Cache-Control: no-cache, must-revalidate;
header(Pragma: no-cache;
23.
<%
'定義數(shù)據(jù)庫(kù)連接的一些常量
Const adOpenForwardOnly = 0 '游標(biāo)只向前瀏覽記錄,不支持分頁(yè)、Recordset、BookMark
Const adOpenKeyset = 1 '鍵集游標(biāo),其他用戶(hù)對(duì)記錄說(shuō)做的修改將反映到記錄集中,但其他用戶(hù)增加或刪除記錄不會(huì)反映到記錄集中。支持分頁(yè)、Recordset、BookMark
Const adOpenDynamic = 2 '動(dòng)態(tài)游標(biāo)功能最強(qiáng),但耗資源也最多。用戶(hù)對(duì)記錄說(shuō)做的修改,增加或刪除記錄都將反映到記錄集中。支持全功能瀏覽(ACCESS不支持)。
Const adOpenStatic = 3 '靜態(tài)游標(biāo),只是數(shù)據(jù)的一個(gè)快照,用戶(hù)對(duì)記錄說(shuō)做的修改,增加或刪除記錄都不會(huì)反映到記錄集中。支持向前或向后移動(dòng)
Const adLockReadOnly = 1 '鎖定類(lèi)型,默認(rèn)的,只讀,不能作任何修改
Const adLockPessimistic = 2 '當(dāng)編輯時(shí)立即鎖定記錄,最安全的方式
Const adLockOptimistic = 3 '只有在調(diào)用Update方法時(shí)才鎖定記錄集,而在此前的其他操作仍可對(duì)當(dāng)前記錄進(jìn)行更改、插入和刪除等
Const adLockBatchOptimistic = 4 '當(dāng)編輯時(shí)記錄不會(huì)被鎖定,而更改、插入和刪除是在批處理方式下完成的
Const adCmdText = &H0001
Const adCmdTable = &H0002
%>
24.最小化、最大化、關(guān)閉窗口
<object id=hh1 classid=clsidDB880A6-D8FF-11CF-9377-00AA003B7A11>
<param name=Command value=Minimize></object>
<object id=hh2 classid=clsidDB880A6-D8FF-11CF-9377-00AA003B7A11>
<param name=Command value=Maximize></object>
<OBJECT id=hh3 classid=clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11>
<PARAM NAME=Command value=Close></OBJECT>
<input type=button value=最小化 onclick=hh1.Click()>
<input type=button value=最大化 onclick=hh2.Click()>
<input type=button value=關(guān)閉 onclick=hh3.Click()>
說(shuō)明:本例適用于IE
25.判斷上一頁(yè)的來(lái)源
asp頁(yè):
request.servervariables(HTTP_REFERER
java script:
document.referrer
26.光標(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();
}
<input type=text name=text1 value=123 onfocus=cc()>
說(shuō)明:適用于表格數(shù)據(jù)提交
################################################################################
網(wǎng)頁(yè)精華代碼集
【1、普通的彈出窗口】
其實(shí)代碼非常簡(jiǎn)單:
<SCRIPT LANGUAGE=javascript>
<!--
window.open ('page.html')
-->
</SCRIPT>
因?yàn)檫@是一段javascripts代碼,所以它們應(yīng)該放在<SCRIPT LANGUAGE=javascript>標(biāo)簽和之間。<!-- 和 -->是對(duì)一些版本低的瀏覽器起作用,在這些老瀏覽器中不會(huì)將標(biāo)簽中的代碼作為文本顯示出來(lái)。要養(yǎng)成這個(gè)好習(xí)慣啊。
window.open ('page.html') 用于控制彈出新的窗口page.html,如果page.html不與主窗口在同一路徑下,前面應(yīng)寫(xiě)明路徑,絕對(duì)路徑(
http://)和相對(duì)路徑(../)均可。
用單引號(hào)和雙引號(hào)都可以,只是不要混用。
這一段代碼可以加入HTML的任意位置,和之間可以,間也可以,越前越早執(zhí)行,尤其是頁(yè)面代碼長(zhǎng),又想使頁(yè)面早點(diǎn)彈出就盡量往前放。
【2、經(jīng)過(guò)設(shè)置后的彈出窗口】
下面再說(shuō)一說(shuō)彈出窗口的設(shè)置。只要再往上面的代碼中加一點(diǎn)東西就可以了。我們來(lái)定制這個(gè)彈出的窗口的外觀,尺寸大小,彈出的位置以適應(yīng)該頁(yè)面的具體情況。
<SCRIPT LANGUAGE=javascript>
<!--
window.open ('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')
//寫(xiě)成一行
-->
</SCRIPT>
參數(shù)解釋?zhuān)?nbsp;
<SCRIPT LANGUAGE=javascript> js腳本開(kāi)始;
window.open 彈出新窗口的命令;
'page.html' 彈出窗口的文件名;
'newwindow' 彈出窗口的名字(不是文件名),非必須,可用空'代替;
height=100 窗口高度;
width=400 窗口寬度;
top=0 窗口距離屏幕上方的象素值;
left=0 窗口距離屏幕左側(cè)的象素值;
toolbar=no 是否顯示工具欄,yes為顯示;
menubar,scrollbars 表示菜單欄和滾動(dòng)欄。
resizable=no 是否允許改變窗口大小,yes為允許;
location=no 是否顯示地址欄,yes為允許;
status=no 是否顯示狀態(tài)欄內(nèi)的信息(通常是文件已經(jīng)打開(kāi)),yes為允許;
</SCRIPT> js腳本結(jié)束
【3、用函數(shù)控制彈出窗口】
下面是一個(gè)完整的代碼。
<script LANGUAGE=javascript>
<!--
function openwin() {
window.open (page.html, newwindow, height=100, width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no)
//寫(xiě)成一行
}
//-->
<body onload=openwin()>
..任意的頁(yè)面內(nèi)容...
這里定義了一個(gè)函數(shù)openwin(),函數(shù)內(nèi)容就是打開(kāi)一個(gè)窗口。在調(diào)用它之前沒(méi)有任何用途。
怎么調(diào)用呢?
方法一:<body onload=openwin()> 瀏覽器讀頁(yè)面時(shí)彈出窗口;
方法二:<body onunload=openwin()> 瀏覽器離開(kāi)頁(yè)面時(shí)彈出窗口;
方法三:用一個(gè)連接調(diào)用:
<a href=注意:使用的“ 方法四:用一個(gè)按鈕調(diào)用:
<input type=button onclick=openwin() value=打開(kāi)窗口>
【4、同時(shí)彈出2個(gè)窗口】
對(duì)源代碼稍微改動(dòng)一下:
<script LANGUAGE=javascript>
<!--
function openwin() {
window.open (page.html, newwindow, height=100, width=100, top=0, left=0,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no)
//寫(xiě)成一行
window.open (page2.html, newwindow2, height=100, width=100, top=100, left=100,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no)
//寫(xiě)成一行
}
//-->
為避免彈出的2個(gè)窗口覆蓋,用top和left控制一下彈出的位置不要相互覆蓋即可。最后用上面說(shuō)過(guò)的四種方法調(diào)用即可。
注意:2個(gè)窗口的name(newwindows和newwindow2)不要相同,或者干脆全部為空。OK?
【5、主窗口打開(kāi)文件1.htm,同時(shí)彈出小窗口page.html】
如下代碼加入主窗口區(qū):
<script language=javascript>
<!--
function openwin() {
window.open(page.html,,width=200,height=200)
}
//-->
加入?yún)^(qū):
<a href=1.htm onclick=openwin()>open</a>即可。
【6、彈出的窗口之定時(shí)關(guān)閉控制】
下面我們?cè)賹?duì)彈出的窗口進(jìn)行一些控制,效果就更好了。如果我們?cè)賹⒁恍《未a加入彈出的頁(yè)面(注意是加入到page.html的HTML中,可不是主頁(yè)面中,否則...),讓它10秒后自動(dòng)關(guān)閉是不是更酷了?
首先,將如下代碼加入page.html文件的區(qū):
<script language=javascript>
function closeit() {
setTimeout(self.close(),10000) //毫秒
}
然后,再用<body onload=closeit()> 這一句話(huà)代替page.html中原有的<BODY>這一句就可以了。(這一句話(huà)千萬(wàn)不要忘記寫(xiě)啊!這一句的作用是調(diào)用關(guān)閉窗口的代碼,10秒鐘后就自行關(guān)閉該窗口。)
【7、在彈出窗口中加上一個(gè)關(guān)閉按鈕】
<FORM>
<INPUT TYPE='BUTTON' value='關(guān)閉' onClick='window.close()'>
</FORM>
呵呵,現(xiàn)在更加完美了!
【8、內(nèi)包含的彈出窗口-一個(gè)頁(yè)面兩個(gè)窗口】
上面的例子都包含兩個(gè)窗口,一個(gè)是主窗口,另一個(gè)是彈出的小窗口。
通過(guò)下面的例子,你可以在一個(gè)頁(yè)面內(nèi)完成上面的效果。
<SCRIPT LANGUAGE=javascript>
function openwin()
{
OpenWindow=window.open(, newwin, height=250, width=250,toolbar=no,scrollbars=+scroll+,menubar=no);
//寫(xiě)成一行
OpenWindow.document.write(<TITLE>例子</TITLE>
OpenWindow.document.write(<BODY BGCOLOR=OpenWindow.document.write(<h1>Hello!</h1>
OpenWindow.document.write(New window opened!)
OpenWindow.document.write(</BODY>
OpenWindow.document.write(</HTML>
OpenWindow.document.close()
}
</SCRIPT>
<a href=<input type=button onclick=openwin() value=打開(kāi)窗口>
看看 OpenWindow.document.write()里面的代碼不就是標(biāo)準(zhǔn)的HTML嗎?只要按照格式寫(xiě)更多的行即可。千萬(wàn)注意多一個(gè)標(biāo)簽或少一個(gè)標(biāo)簽就會(huì)出現(xiàn)錯(cuò)誤。記得用OpenWindow.document.close()結(jié)束啊。
【9、終極應(yīng)用--彈出的窗口之Cookie控制】
回想一下,上面的彈出窗口雖然酷,但是有一點(diǎn)小毛病(沉浸在喜悅之中,一定沒(méi)有發(fā)現(xiàn)吧?)比如你將上面的腳本放在一個(gè)需要頻繁經(jīng)過(guò)的頁(yè)面里(例如首頁(yè)),那么每次刷新這個(gè)頁(yè)面,窗口都會(huì)彈出一次,是不是非常煩人?:-(
有解決的辦法嗎?Yes! ;-) Follow me.
我們使用cookie來(lái)控制一下就可以了。
首先,將如下代碼加入主頁(yè)面HTML的<HEAD>區(qū):
function openwin(){
window.open(page.html,,width=200,height=200)
}
function get_cookie(Name) {
var search = Name + =
var returnvalue = ;
if (documents.cookie.length > 0) {
offset = documents.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = documents.cookie.indexOf(;, offset);
if (end == -1)
end = documents.cookie.length;
returnvalue=unescape(documents.cookie.substring(offset, end))
}
}
return returnvalue;
}
function loadpopup(){
if (get_cookie('popped')=='){
openwin()
documents.cookie=popped=yes
}
}
然后,用<body onload=loadpopup()>(注意不是openwin而是loadpop啊!)替換主頁(yè)面中原有的<BODY>這一句即可。你可以試著刷新一下這個(gè)頁(yè)面或重新進(jìn)入該頁(yè)面,窗口再也不會(huì)彈出了。真正的Pop-Only-Once!
寫(xiě)到這里彈出窗口的制作和應(yīng)用技巧基本上算是完成了,俺也累壞了,一口氣說(shuō)了這么多,希望對(duì)正在制作網(wǎng)頁(yè)的朋友有所幫助俺就非常欣慰了。
需要注意的是,JS腳本中的的大小寫(xiě)最好前后保持一致。
1.彈啟一個(gè)全屏窗口
<body onload=window.open('
http://www.pconline.com.cn','example01','fullscreen');>;
<b>www.e3i5.com</b>
2.彈啟一個(gè)被F11化后的窗口
<body onload=window.open('
http://www.pconline.com.cn','example02','channelmode');>;
<b>www.e3i5.com</b>
3.彈啟一個(gè)帶有收藏鏈接工具欄的窗口
<body onload=window.open('
'">http://www.pconline.com.cn','example03','width=400,height=300,directories');>
<b>www.e3i5.com</b>
4.網(wǎng)頁(yè)對(duì)話(huà)框
<SCRIPT LANGUAGE=javascript>
<!--
showModalDialog('
http://www.pconline.com.cn','example04','dialogWidth:400px;dialogHeight:300px;
dialogLeft:200px;dialogTop:150px;center:yes;help:yes;resizable:yes;status:yes')
//-->
</SCRIPT>
<b>www.e3i5.com</b>
<SCRIPT LANGUAGE=javascript>
<!--
showModelessDialog('
http://www.pconline.com.cn','example05','dialogWidth:400px;dialogHeight:300px;
dialogLeft:200px;dialogTop:150px;center:yes;help:yes;resizable:yes;status:yes')
//-->
</SCRIPT>
<b> target=_blank>
http://www.pconline.com.cn</b>
showModalDialog()或是showModelessDialog() 來(lái)調(diào)用網(wǎng)頁(yè)對(duì)話(huà)框,至于showModalDialog()與showModelessDialog()的區(qū)別,在于showModalDialog()打開(kāi)的窗口(簡(jiǎn)稱(chēng)模式窗口),置在父窗口上,必須關(guān)閉才能訪(fǎng)問(wèn)父窗口(建議盡量少用,以免招人反感);showModelessDialog()(簡(jiǎn)稱(chēng)無(wú)模式窗口),打開(kāi)后不必關(guān)閉也可訪(fǎng)問(wèn)父窗口打開(kāi)的窗口。
dialogHeight: iHeight 設(shè)置對(duì)話(huà)框窗口的高度。
dialogWidth: iWidth 設(shè)置對(duì)話(huà)框窗口的寬度。
dialogLeft: iXPos 設(shè)置對(duì)話(huà)框窗口相對(duì)于桌面左上角的left位置。
dialogTop: iYPos 設(shè)置對(duì)話(huà)框窗口相對(duì)于桌面左上角的top位置。
center: {yes | no | 1 | 0 } 指定是否將對(duì)話(huà)框在桌面上居中,默認(rèn)值是“yes”。
help: {yes | no | 1 | 0 } 指定對(duì)話(huà)框窗口中是否顯示上下文敏感的幫助圖標(biāo)。默認(rèn)值是“yes”。
resizable: {yes | no | 1 | 0 } 指定是否對(duì)話(huà)框窗口大小可變。默認(rèn)值是“no”。
status: {yes | no | 1 | 0 } 指定對(duì)話(huà)框窗口是否顯示狀態(tài)欄。對(duì)于非模式對(duì)話(huà)框窗口,默認(rèn)值是“yes”;對(duì)于模式對(duì)話(huà)框窗口,默認(rèn)值是 “no”。