欧美性猛交XXXX免费看蜜桃,成人网18免费韩国,亚洲国产成人精品区综合,欧美日韩一区二区三区高清不卡,亚洲综合一区二区精品久久

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費電子書(shū)等14項超值服

開(kāi)通VIP
web開(kāi)發(fā)常用小技巧(下)
作者tag:javascript web web開(kāi)發(fā)(腳本和動(dòng)態(tài)語(yǔ)言) web開(kāi)發(fā)常用小技巧 開(kāi)發(fā)常用小技巧 CSDN 推薦tag:屬性 屏蔽 查詢(xún) 檢索 網(wǎng)頁(yè) 文件 打印 正則表達式 頁(yè)面 
//各種尺寸
s  +=  "\r\n網(wǎng)頁(yè)可見(jiàn)區域寬:"+  document.body.clientWidth;  
s  +=  "\r\n網(wǎng)頁(yè)可見(jiàn)區域高:"+  document.body.clientHeight;  
s  +=  "\r\n網(wǎng)頁(yè)可見(jiàn)區域高:"+  document.body.offsetWeight  +"  (包括邊線(xiàn)的寬)";  
s  +=  "\r\n網(wǎng)頁(yè)可見(jiàn)區域高:"+  document.body.offsetHeight  +"  (包括邊線(xiàn)的寬)";  
s  +=  "\r\n網(wǎng)頁(yè)正文全文寬:"+  document.body.scrollWidth;  
s  +=  "\r\n網(wǎng)頁(yè)正文全文高:"+  document.body.scrollHeight;  
s  +=  "\r\n網(wǎng)頁(yè)被卷去的高:"+  document.body.scrollTop;  
s  +=  "\r\n網(wǎng)頁(yè)被卷去的左:"+  document.body.scrollLeft;  
s  +=  "\r\n網(wǎng)頁(yè)正文部分上:"+  window.screenTop;  
s  +=  "\r\n網(wǎng)頁(yè)正文部分左:"+  window.screenLeft;  
s  +=  "\r\n屏幕分辨率的高:"+  window.screen.height;  
s  +=  "\r\n屏幕分辨率的寬:"+  window.screen.width;  
s  +=  "\r\n屏幕可用工作區高度:"+  window.screen.availHeight;  
s  +=  "\r\n屏幕可用工作區寬度:"+  window.screen.availWidth;  

//過(guò)濾數字

 

<input type=text onkeypress="return event.keyCode>=48&&event.keyCode<=57||(this.value.indexOf(‘.‘)<0?event.keyCode==46:false)" onpaste="return !clipboardData.getData(‘text‘).match(/\D/)" ondragenter="return false">

 

<input type=text onkeypress="return event.keyCode>=48&&event.keyCode<=57||(this.value.indexOf(‘.‘)<0?event.keyCode==46:false)" onpaste="return !clipboardData.getData(‘text‘).match(/\D/)" ondragenter="return false">

 

//特殊用途

 

<input type=button value=導入收藏夾 onclick="window.external.ImportExportFavorites(true,‘http://localhost‘);">
<input type=button value=導出收藏夾 onclick="window.external.ImportExportFavorites(false,‘http://localhost‘);">
<input type=button value=整理收藏夾 onclick="window.external.ShowBrowserUI(‘OrganizeFavorites‘, null)">
<input type=button value=語(yǔ)言設置   onclick="window.external.ShowBrowserUI(‘LanguageDialog‘, null)">
<input type=button value=加入收藏夾 onclick="window.external.AddFavorite(‘http://www.google.com/‘, ‘google‘)">
<input type=button value=加入到頻道 onclick="window.external.addChannel(‘http://www.google.com/‘)">
<input type=button value=加入到頻道 onclick="window.external.showBrowserUI(‘PrivacySettings‘,null)">

 

<input type=button value=導入收藏夾 onclick="window.external.ImportExportFavorites(true,‘http://localhost‘);">
<input type=button value=導出收藏夾 onclick="window.external.ImportExportFavorites(false,‘http://localhost‘);">
<input type=button value=整理收藏夾 onclick="window.external.ShowBrowserUI(‘OrganizeFavorites‘, null)">
<input type=button value=語(yǔ)言設置   onclick="window.external.ShowBrowserUI(‘LanguageDialog‘, null)">
<input type=button value=加入收藏夾 onclick="window.external.AddFavorite(‘http://www.google.com/‘, ‘google‘)">
<input type=button value=加入到頻道 onclick="window.external.addChannel(‘http://www.google.com/‘)">
<input type=button value=加入到頻道 onclick="window.external.showBrowserUI(‘PrivacySettings‘,null)">

 

//不緩存

 

<META HTTP-EQUIV="pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
<META HTTP-EQUIV="expires" CONTENT="0">

 

 

<META HTTP-EQUIV="pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
<META HTTP-EQUIV="expires" CONTENT="0">

 

 


//正則匹配

 

匹配中文字符的正則表達式: [\u4e00-\u9fa5]
匹配雙字節字符(包括漢字在內):[^\x00-\xff]
匹配空行的正則表達式:\n[\s| ]*\r
匹配HTML標記的正則表達式:/<(.*)>.*<\/\1>|<(.*) \/>/ 
匹配首尾空格的正則表達式:(^\s*)|(\s*$)(像vbscript那樣的trim函數)
匹配Email地址的正則表達式:\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
匹配網(wǎng)址URL的正則表達式:http://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?
以下是例子:
利用正則表達式限制網(wǎng)頁(yè)表單里的文本框輸入內容:
用正則表達式限制只能輸入中文:onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,‘‘)" onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\u4E00-\u9FA5]/g,‘‘))"
1.用正則表達式限制只能輸入全角字符: onkeyup="value=value.replace(/[^\uFF00-\uFFFF]/g,‘‘)" onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\uFF00-\uFFFF]/g,‘‘))"
2.用正則表達式限制只能輸入數字:onkeyup="value=value.replace(/[^\d]/g,‘‘) "onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\d]/g,‘‘))"
3.用正則表達式限制只能輸入數字和英文:onkeyup="value=value.replace(/[\W]/g,‘‘) "onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\d]/g,‘‘))"

//消除圖像工具欄

 

<IMG SRC="mypicture.jpg" HEIGHT="100px" WIDTH="100px" GALLERYIMG="false"
or
<head>
<meta http-equiv="imagetoolbar" content="no">
</head>

 

<IMG SRC="mypicture.jpg" HEIGHT="100px" WIDTH="100px" GALLERYIMG="false"
or
<head>
<meta http-equiv="imagetoolbar" content="no">
</head>

 

 

<IMG SRC="mypicture.jpg" HEIGHT="100px" WIDTH="100px" GALLERYIMG="false"
or
<head>
<meta http-equiv="imagetoolbar" content="no">
</head>

//無(wú)提示關(guān)閉

function Close()
{
 var ua=navigator.userAgent
 var ie=navigator.appName=="Microsoft Internet Explorer"?true:false
 if(ie)
 {
      var IEversion=parseFloat(ua.substring(ua.indexOf("MSIE ")+5,ua.indexOf(";",ua.indexOf("MSIE "))))
  if(IEversion< 5.5)
  {
   var str  = ‘<object id=noTipClose classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11">‘
       str += ‘<param name="Command" value="Close"></object>‘;
       document.body.insertAdjacentHTML("beforeEnd", str);
       document.all.noTipClose.Click();
  }
      else
  {
       window.opener =null;
       window.close();
      }
   }
 else
 {
  window.close()
   }
}

//取得控件得絕對位置(1)

<script language="javascript"
function getoffset(e)

 var t=e.offsetTop; 
 var l=e.offsetLeft; 
 while(e=e.offsetParent)
 { 
  t+=e.offsetTop; 
  l+=e.offsetLeft; 
 } 
 var rec = new Array(1);
 rec[0]  = t;
 rec[1] = l;
 return rec

</script>

//獲得控件的絕對位置(2)

oRect = obj.getBoundingClientRect();
oRect.left
oRect.

//最小化,最大化,關(guān)閉

 

<object id=min classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11"
<param name="Command" value="Minimize"></object> 
<object id=max classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11"
<param name="Command" value="Maximize"></object> 
<OBJECT id=close classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"
<PARAM NAME="Command" value="Close"></OBJECT> 
<input type=button value=最小化 onclick=min.Click()> 
<input type=button value=最大化 onclick=max.Click()> 
<input type=button value=關(guān)閉 onclick=close.Click()> 

 

<object id=min classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11"
<param name="Command" value="Minimize"></object> 
<object id=max classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11"
<param name="Command" value="Maximize"></object> 
<OBJECT id=close classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"
<PARAM NAME="Command" value="Close"></OBJECT> 
<input type=button value=最小化 onclick=min.Click()> 
<input type=button value=最大化 onclick=max.Click()> 
<input type=button value=關(guān)閉 onclick=close.Click()> 

 

 

//光標停在文字最后

 

<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è)面進(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è)面被載入和調出時(shí)的一些特效。duration表示特效的持續時(shí)間,以秒為單位。transition表示使
用哪種特效,取值為1-23:
  0 矩形縮小 
  1 矩形擴大 
  2 圓形縮小
  3 圓形擴大 
  4 下到上刷新 
  5 上到下刷新
  6 左到右刷新 
  7 右到左刷新 
  8 豎百葉窗
  9 橫百葉窗 
  10 錯位橫百葉窗 
  11 錯位豎百葉窗
  12 點(diǎn)擴散 
  13 左右到中間刷新 
  14 中間到左右刷新
  15 中間到上下
  16 上下到中間 
  17 右下到左上
  18 右上到左下 
  19 左上到右下 
  20 左下到右上
  21 橫條 
  22 豎條 
  23 

//網(wǎng)頁(yè)是否被檢索

 

<meta name="ROBOTS" content="屬性值">
  其中屬性值有以下一些:
  屬性值為"all": 文件將被檢索,且頁(yè)上鏈接可被查詢(xún);
  屬性值為"none": 文件不被檢索,而且不查詢(xún)頁(yè)上的鏈接;
  屬性值為"index": 文件將被檢索;
  屬性值為"follow": 查詢(xún)頁(yè)上的鏈接;
  屬性值為"noindex": 文件不檢索,但可被查詢(xún)鏈接;
  屬性值為"nofollow"

 

<meta name="ROBOTS" content="屬性值">
  其中屬性值有以下一些:
  屬性值為"all": 文件將被檢索,且頁(yè)上鏈接可被查詢(xún);
  屬性值為"none": 文件不被檢索,而且不查詢(xún)頁(yè)上的鏈接;
  屬性值為"index": 文件將被檢索;
  屬性值為"follow": 查詢(xún)頁(yè)上的鏈接;
  屬性值為"noindex": 文件不檢索,但可被查詢(xún)鏈接;
  屬性值為"nofollow"

 


//打印分頁(yè)

 

<p  style="page-break-after:always">page1</p>  
<p  style="page-break-after:always">page2</p>  

 

<p  style="page-break-after:always">page1</p>  
<p  style="page-break-after:always">page2</p>  

 


//設置打印

<object id="factory" style="display:none" viewastext
  classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814"
  codebase="http://www.meadroid.com/scriptx/ScriptX.cab#Version=5,60,0,360"
></object>
<input type=button value=頁(yè)面設置 onclick="factory.printing.PageSetup()">
<input type=button value=打印預覽 onclick="factory.printing.Preview()">
 
<script language=javascript>
function window.onload()
{
   // -- advanced features
   factory.printing.SetMarginMeasure(2) // measure margins in inches
   factory.printing.SetPageRange(false, 1, 3) // need pages from 1 to 3
   factory.printing.printer = "HP DeskJet 870C"
   factory.printing.copies = 2
   factory.printing.collate = true
   factory.printing.paperSize = "A4"
   factory.printing.paperSource = "Manual feed"
   // -- basic features
   factory.printing.header = "居左顯示&b居中顯示&b居右顯示頁(yè)碼,第&p頁(yè)/共&P頁(yè)"
   factory.printing.footer = "(自定義頁(yè)腳)"
   factory.printing.portrait = false
   factory.printing.leftMargin = 0.75
   factory.printing.topMargin = 1.5
   factory.printing.rightMargin = 0.75
   factory.printing.bottomMargin = 1.5
}
function Print(frame) {
  factory.printing.Print(true, frame) // print with prompt
}
</script>
<input type=button value="打印本頁(yè)" onclick="factory.printing.Print(false)">
<input type=button value="頁(yè)面設置" onclick="factory.printing.PageSetup()">
<input type=button value="打印預覽" onclick="factory.printing.Preview()"><br>
<a href="http://www.meadroid.com/scriptx/docs/printdoc.htm?static"  target=_blank>具體使用手冊,更多信息,點(diǎn)這里</a>
 

//自帶的打印預覽

WebBrowser.ExecWB(1,1) 打開(kāi) 
Web.ExecWB(2,1) 關(guān)閉現在所有的IE窗口,并打開(kāi)一個(gè)新窗口 
Web.ExecWB(4,1) 保存網(wǎng)頁(yè) 
Web.ExecWB(6,1) 打印 
Web.ExecWB(7,1) 打印預覽 
Web.ExecWB(8,1) 打印頁(yè)面設置 
Web.ExecWB(10,1) 查看頁(yè)面屬性 
Web.ExecWB(15,1) 好像是撤銷(xiāo),有待確認 
Web.ExecWB(17,1) 全選 
Web.ExecWB(22,1) 刷新 
Web.ExecWB(45,1) 關(guān)閉窗體無(wú)提示 
<style media=print> 
.Noprint{display:none;}<!--用本樣式在打印時(shí)隱藏非打印項目--> 
.PageNext{page-break-after: always;}<!--控制分頁(yè)--> 
</style> 
<object  id="WebBrowser"  width=0  height=0  classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2">    
</object>    
 
<center class="Noprint" >
<input type=button value=打印 onclick=document.all.WebBrowser.ExecWB(6,1)> 
<input type=button value=直接打印 onclick=document.all.WebBrowser.ExecWB(6,6)> 
<input type=button value=頁(yè)面設置 onclick=document.all.WebBrowser.ExecWB(8,1)> 
</p> 
<p> <input type=button value=打印預覽 onclick=document.all.WebBrowser.ExecWB(7,1)> 
</center>

//去掉打印時(shí)的頁(yè)眉頁(yè)腳

<script  language="JavaScript">  
var HKEY_Root,HKEY_Path,HKEY_Key;
HKEY_Root="HKEY_CURRENT_USER";
HKEY_Path="\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";
//設置網(wǎng)頁(yè)打印的頁(yè)眉頁(yè)腳為空
function PageSetup_Null()
{
 try
 {
         var Wsh=new ActiveXObject("WScript.Shell");
  HKEY_Key="header";
  Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"");
  HKEY_Key="footer";
  Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"");
 }
 catch(e){}
}
//設置網(wǎng)頁(yè)打印的頁(yè)眉頁(yè)腳為默認值
function  PageSetup_Default()
{  
 try
 {
  var Wsh=new ActiveXObject("WScript.Shell");
  HKEY_Key="header";
  Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"&w&b頁(yè)碼,&p/&P");
  HKEY_Key="footer";
  Wsh.RegWrite(HKEY_Root+HKEY_Path+HKEY_Key,"&u&b&d");
 }
 catch(e){}
}
</script>
<input type="button" value="清空頁(yè)碼" onclick=PageSetup_Null()>
<input type="button" value="恢復頁(yè)碼" onclick=PageSetup_Default()>

//瀏覽器驗證

function checkBrowser()

   this.ver=navigator.appVersion 
   this.dom=document.getElementById?1:0 
   this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0; 
   this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0; 
   this.ie4=(document.all && !this.dom)?1:0; 
   this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
   this.ns4=(document.layers && !this.dom)?1:0; 
   this.mac=(this.ver.indexOf(‘Mac‘) > -1) ?1:0; 
   this.ope=(navigator.userAgent.indexOf(‘Opera‘)>-1); 
   this.ie=(this.ie6 || this.ie5 || this.ie4) 
   this.ns=(this.ns4 || this.ns5) 
   this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns5 || this.ns4 || this.mac || this.ope) 
   this.nbw=(!this.bw) 
   return this;
}

//計算內容寬和高

 

<SCRIPT  language="javascript">  
function  test(obj)  
{  
       var  range  =  obj.createTextRange();  
       alert("內容區寬度:  "  +  range.boundingWidth    
                                                 +  "px\r\n內容區高度:  "  +  range.boundingHeight  +  "px");  
             
}  
</SCRIPT>  
<BODY>  
<Textarea id="txt" height="150">sdf</textarea><INPUT  type="button"  value="計算內容寬度"  onClick="test(txt)">  
</BODY>

//無(wú)模式的提示框

 

function modelessAlert(Msg)
{
   window.showModelessDialog("javascript :alert(\""+escape(Msg)+"\");window.close();","","status:no;resizable:no;help:no;dialogHeight:height:30px;dialogHeight:40px;");
}

 

function modelessAlert(Msg)
{
   window.showModelessDialog("javascript :alert(\""+escape(Msg)+"\");window.close();","","status:no;resizable:no;help:no;dialogHeight:height:30px;dialogHeight:40px;");
}

 

 

<SCRIPT  language="javascript">  
function  test(obj)  
{  
       var  range  =  obj.createTextRange();  
       alert("內容區寬度:  "  +  range.boundingWidth    
                                                 +  "px\r\n內容區高度:  "  +  range.boundingHeight  +  "px");  
             
}  
</SCRIPT>  
<BODY>  
<Textarea id="txt" height="150">sdf</textarea><INPUT  type="button"  value="計算內容寬度"  onClick="test(txt)">  
</BODY>

//無(wú)模式的提示框

 

function modelessAlert(Msg)
{
   window.showModelessDialog("javascript :alert(\""+escape(Msg)+"\");window.close();","","status:no;resizable:no;help:no;dialogHeight:height:30px;dialogHeight:40px;");
}

 

function modelessAlert(Msg)
{
   window.showModelessDialog("javascript :alert(\""+escape(Msg)+"\");window.close();","","status:no;resizable:no;help:no;dialogHeight:height:30px;dialogHeight:40px;");
}

 

 

 

function modelessAlert(Msg)
{
   window.showModelessDialog("javascript :alert(\""+escape(Msg)+"\");window.close();","","status:no;resizable:no;help:no;dialogHeight:height:30px;dialogHeight:40px;");
}

 

function modelessAlert(Msg)
{
   window.showModelessDialog("javascript :alert(\""+escape(Msg)+"\");window.close();","","status:no;resizable:no;help:no;dialogHeight:height:30px;dialogHeight:40px;");
}

 

<SCRIPT  language="javascript">  
function  test(obj)  
{  
       var  range  =  obj.createTextRange();  
       alert("內容區寬度:  "  +  range.boundingWidth    
                                                 +  "px\r\n內容區高度:  "  +  range.boundingHeight  +  "px");  
             
}  
</SCRIPT>  
<BODY>  
<Textarea id="txt" height="150">sdf</textarea><INPUT  type="button"  value="計算內容寬度"  onClick="test(txt)">  
</BODY>

//無(wú)模式的提示框

 

function modelessAlert(Msg)
{
   window.showModelessDialog("javascript :alert(\""+escape(Msg)+"\");window.close();","","status:no;resizable:no;help:no;dialogHeight:height:30px;dialogHeight:40px;");
}

 

function modelessAlert(Msg)
{
   window.showModelessDialog("javascript :alert(\""+escape(Msg)+"\");window.close();","","status:no;resizable:no;help:no;dialogHeight:height:30px;dialogHeight:40px;");
}

 

 

function modelessAlert(Msg)
{
   window.showModelessDialog("javascript :alert(\""+escape(Msg)+"\");window.close();","","status:no;resizable:no;help:no;dialogHeight:height:30px;dialogHeight:40px;");
}

 

//屏蔽按鍵

 

<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  <noscript><meta http-equiv="refresh" content="0;url=about:noscript"></noscript>
  <title>屏蔽鼠標右鍵、Ctrl+N、Shift+F10、Alt+F4、F11、F5刷新、退格鍵</title>
</head>
<body>
<script language="Javascript"><!--
  //屏蔽鼠標右鍵、Ctrl+N、Shift+F10、F11、F5刷新、退格鍵
  //Author: meizz(梅花雨) 2002-6-18
function document.oncontextmenu(){event.returnValue=false;}//屏蔽鼠標右鍵
function window.onhelp(){return false//屏蔽F1幫助
function document.onkeydown()
{
  if ((window.event.altKey)&&
      ((window.event.keyCode==37)||   //屏蔽 Alt+ 方向鍵 ←
       (window.event.keyCode==39)))   //屏蔽 Alt+ 方向鍵 →
  {
     alert("不準你使用ALT+方向鍵前進(jìn)或后退網(wǎng)頁(yè)!");
     event.returnValue=false;
  }
     /* 注:這還不是真正地屏蔽 Alt+ 方向鍵,
     因為 Alt+ 方向鍵彈出警告框時(shí),按住 Alt 鍵不放,
     用鼠標點(diǎn)掉警告框,這種屏蔽方法就失效了。以后若
     有哪位高手有真正屏蔽 Alt 鍵的方法,請告知。*/

  if ((event.keyCode==8)  ||                 //屏蔽退格刪除鍵
      (event.keyCode==116)||                 //屏蔽 F5 刷新鍵
      (event.ctrlKey && event.keyCode==82)){ //Ctrl + R
     event.keyCode=0;
     event.returnValue=false;
     }
  if (event.keyCode==122){event.keyCode=0;event.returnValue=false;}  //屏蔽F11
  if (event.ctrlKey && event.keyCode==78) event.returnValue=false;   //屏蔽 Ctrl+n
  if (event.shiftKey && event.keyCode==121)event.returnValue=false;  //屏蔽 shift+F10
  if (window.event.srcElement.tagName == "A" && window.event.shiftKey) 
      window.event.returnValue = false;             //屏蔽 shift 加鼠標左鍵新開(kāi)一網(wǎng)頁(yè)
  if ((window.event.altKey)&&(window.event.keyCode==115))             //屏蔽Alt+F4
  {
      window.showModelessDialog("about:blank","","dialogWidth:1px;dialogheight:1px");
      return false;
  }
}
</script>
屏蔽鼠標右鍵、Ctrl+N、Shift+F10、Alt+F4、F11、F5刷新、退格鍵
</body>
</html>

//屏蔽打印
<style>
@media print{
* {display:none}
}
</style>

//移動(dòng)的圖層,拖動(dòng)

1.<span style=‘position:absolute;width:200;height:200;background:red‘ onmousedown=MouseDown(this) onmousemove=MouseMove() onmouseup=MouseUp()>meizz</span>
<script language=javascript>
var Obj;
function MouseDown(obj)
{
  Obj=obj;
  Obj.setCapture();
  Obj.l=event.x-Obj.style.pixelLeft;
  Obj.t=event.y-Obj.style.pixelTop;
}
function MouseMove()
{
  if(Obj!=null)
  {
    Obj.style.left = event.x-Obj.l;
    Obj.style.top = event.y-Obj.t;
  }
}
function MouseUp()
{
  if(Obj!=null)
  {
    Obj.releaseCapture();
    Obj=null;
  }
}
</script>
2.
<div id="myDiv" src="logo.gif" ondrag="doDrag();" onmouseover="this.style.cursor=‘hand‘" style="position:absolute;left=100;top=100;" onmousedown="doMouseDown();">
<a href="#" onclick="return false"><h1>wlecome</h1></a>
</div>
<script language="JavaScript" type="text/javascript">
var orgMouseX;
var orgMouseY;
var orgObjX;
var orgObjY;
function doDrag()
{
var myObject=document.all.myDiv;

var x=event.clientX;
var y=event.clientY;
myObject.style.left=x-(orgMouseX-orgObjX);
myObject.style.top=y-(orgMouseY-orgObjY);
 
}
function doMouseDown()
{
orgMouseX=event.clientX;
orgMouseY=event.clientY;
orgObjX=parseInt(document.all.myDiv.style.left);
orgObjY=parseInt(document.all.myDiv.style.top);
}

</script>
 

//文檔狀態(tài)改變

<iframe src="a.html" id="f" name="f" scrolling="no" frameborder=0 marginwidth=0 marginheight=0></iframe>
<script>
var doc=window.frames["f"].document;
function s(){
 if (doc.readyState=="complete"){
  document.all.f.style.height=doc.body.scrollHeight
  document.all.f.style.width=doc.body.scrollWidth
 }
}
doc.onreadystatechange=s
</script>

//刷新后不變的文本框

 

<HTML>
<HEAD>
<META NAME="save" CONTENT="history">
<STYLE>
   .sHistory {behavior:url(#default#savehistory);}
</STYLE>
</HEAD>
<BODY>
<INPUT class=sHistory type=text id=oPersistInput>
</BODY>
</HTML>

 

<HTML>
<HEAD>
<META NAME="save" CONTENT="history">
<STYLE>
   .sHistory {behavior:url(#default#savehistory);}
</STYLE>
</HEAD>
<BODY>
<INPUT class=sHistory type=text id=oPersistInput>
</BODY>
</HTML>

 

<HTML>
<HEAD>
<META NAME="save" CONTENT="history">
<STYLE>
   .sHistory {behavior:url(#default#savehistory);}
</STYLE>
</HEAD>
<BODY>
<INPUT class=sHistory type=text id=oPersistInput>
</BODY>
</HTML>

 

<p  style="page-break-after:always">page1</p>  
<p  style="page-break-after:always">page2</p>  

 

<meta name="ROBOTS" content="屬性值">
  其中屬性值有以下一些:
  屬性值為"all": 文件將被檢索,且頁(yè)上鏈接可被查詢(xún);
  屬性值為"none": 文件不被檢索,而且不查詢(xún)頁(yè)上的鏈接;
  屬性值為"index": 文件將被檢索;
  屬性值為"follow": 查詢(xún)頁(yè)上的鏈接;
  屬性值為"noindex": 文件不檢索,但可被查詢(xún)鏈接;
  屬性值為"nofollow"

 

<object id=min classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11"
<param name="Command" value="Minimize"></object> 
<object id=max classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11"
<param name="Command" value="Maximize"></object> 
<OBJECT id=close classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"
<PARAM NAME="Command" value="Close"></OBJECT> 
<input type=button value=最小化 onclick=min.Click()> 
<input type=button value=最大化 onclick=max.Click()> 
<input type=button value=關(guān)閉 onclick=close.Click()> 

 

<META HTTP-EQUIV="pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
<META HTTP-EQUIV="expires" CONTENT="0">

 

 

<input type=button value=導入收藏夾 onclick="window.external.ImportExportFavorites(true,‘http://localhost‘);">
<input type=button value=導出收藏夾 onclick="window.external.ImportExportFavorites(false,‘http://localhost‘);">
<input type=button value=整理收藏夾 onclick="window.external.ShowBrowserUI(‘OrganizeFavorites‘, null)">
<input type=button value=語(yǔ)言設置   onclick="window.external.ShowBrowserUI(‘LanguageDialog‘, null)">
<input type=button value=加入收藏夾 onclick="window.external.AddFavorite(‘http://www.google.com/‘, ‘google‘)">
<input type=button value=加入到頻道 onclick="window.external.addChannel(‘http://www.google.com/‘)">
<input type=button value=加入到頻道 onclick="window.external.showBrowserUI(‘PrivacySettings‘,null)">

 

<input type=text onkeypress="return event.keyCode>=48&&event.keyCode<=57||(this.value.indexOf(‘.‘)<0?event.keyCode==46:false)" onpaste="return !clipboardData.getData(‘text‘).match(/\D/)" ondragenter="return false">
本站僅提供存儲服務(wù),所有內容均由用戶(hù)發(fā)布,如發(fā)現有害或侵權內容,請點(diǎn)擊舉報。
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
javascript小技巧
JS代碼大全高級應用
表單相關(guān)特效整理
表單頁(yè)面
js showModalDialog參數傳遞
模態(tài)窗口和非模態(tài)窗口
更多類(lèi)似文章 >>
生活服務(wù)
分享 收藏 導長(cháng)圖 關(guān)注 下載文章
綁定賬號成功
后續可登錄賬號暢享VIP特權!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服

欧美性猛交XXXX免费看蜜桃,成人网18免费韩国,亚洲国产成人精品区综合,欧美日韩一区二区三区高清不卡,亚洲综合一区二区精品久久