超級實用且不花哨的js程式碼大全
事件源物件
event.srcElement.tagName
event.srcElement.type
捕獲釋放
event.srcElement.setCapture();
event.srcElement.releaseCapture();
事件按鍵
event.keyCode
event.shiftKey
event.altKey
event.ctrlKey
事件返回值
event.returnValue
滑鼠位置
event.x
event.y
窗體活動元素
document.activeElement
繫結事件
document.captureEvents(Event.KEYDOWN);
訪問窗體元素
document.all("txt").focus();
document.all("txt").select();
窗體命令
document.execCommand
窗體COOKIE
document.cookie
選單事件
document.oncontextmenu
建立元素
document.createElement("SPAN");
根據滑鼠獲得元素:
document.elementFromPoint(event.x,event.y).tagName=="TD
document.elementFromPoint(event.x,event.y).appendChild(ms)
窗體圖片
document.images[索引]
窗體事件繫結
document.onmousedown=scrollwindow;
元素
document.窗體.elements[索引]
物件繫結事件
document.all.xxx.detachEvent('onclick',a);
外掛數目
navigator.plugins
取變數型別
typeof($js_libpath) == "undefined"
下拉框
下拉框.options[索引]
下拉框.options.length
查詢物件
document.getElementsByName("r1");
document.getElementById(id);
定時
timer=setInterval('scrollwindow()',delay);
clearInterval(timer);
UNCODE編碼
escape() ,unescape
父物件
obj.parentElement(dhtml)
obj.parentNode(dom)
交換表的行
TableID.moveRow(2,1)
替換CSS
document.all.csss.href = "a.css";
並排顯示
display:inline
隱藏焦點
hidefocus=true
根據寬度換行
style="word-break:break-all"
自動重新整理
<meta HTTP-EQUIV="refresh" C>
簡單郵件
<a href="[email=aaa@bbb.com?subject=ccc&body=xxxyyy]mailto:aaa@bbb.com?subject=ccc&body=xxxyyy[/email]">
快速轉到位置
obj.scrollIntoView(true)
錨
<a name="first">
<a href="#first">anchors</a>
網頁傳遞引數
location.search();
可編輯
obj.contenteditable=true
執行選單命令
obj.execCommand
雙位元組字元
/[^/x00-/xff]/
漢字
/[/u4e00-/u9fa5]/
讓英文字串超出表格寬度自動換行
word-wrap: break-word; word-break: break-all;
透明背景
<IFRAME src="1.htm" width=300 height=180 allowtransparency></iframe>
獲得style內容
obj.style.cssText
HTML標籤
document.documentElement.innerHTML
第一個style標籤
document.styleSheets[0]
style標籤裡的第一個樣式
document.styleSheets[0].rules[0]
防止點選空連結時,頁面往往重置到頁首端。
<a href="javascript:function()">word</a>
上一網頁源
asp:
request.servervariables("HTTP_REFERER")
javascript:
document.referrer
釋放記憶體
CollectGarbage();
禁止右鍵
document.oncontextmenu = function() { return false;}
禁止儲存
<noscript><iframe src="*.htm"></iframe></noscript>
禁止選取<body Shortcut Icon" href="favicon.ico">
favicon.ico 名字最好不變16*16的16色,放虛擬目錄根目錄下
收藏欄圖示
<link rel="Bookmark" href="favicon.ico">
檢視原始碼
<input type=button value=檢視網頁原始碼 >
關閉輸入法
<input style="ime-mode:disabled">
自動全選
<input type=text name=text1 value="123" >
ENTER鍵可以讓游標移到下一個輸入框
<input >
文字框的預設值
<input type=text value="123" >
title換行
obj.title = "123 sdfs "
獲得時間所代表的微秒
var n1 = new Date("2004-10-10".replace(/-/g, "//")).getTime()
視窗是否關閉
win.closed
checkbox扁平
<input type=checkbox style="position: absolute; clip:rect(5px 15px 15px 5px)"><br>
獲取選中內容
document.selection.createRange().duplicate().text
自動完成功能
<input type=text autocomplete=on>開啟該功能
<input type=text autocomplete=off>關閉該功能
視窗最大化
<body >
無關閉按鈕IE window.open("aa.htm", "meizz", "fullscreen=7");
統一編碼/解碼 alert(decodeURIComponent(encodeURIComponent("http://你好.com?as= hehe")))
encodeURIComponent對":"、"/"、";" 和 "?"也編碼
高階應用(一) ~~~~~~~~~~~~~~
//各種尺寸
s += "/r/n網頁可見區域寬:"+ document.body.clientWidth;
s += "/r/n網頁可見區域高:"+ document.body.clientHeight;
s += "/r/n網頁可見區域高:"+ document.body.offsetWeight +" (包括邊線的寬)";
s += "/r/n網頁可見區域高:"+ document.body.offsetHeight +" (包括邊線的寬)";
s += "/r/n網頁正文全文寬:"+ document.body.scrollWidth;
s += "/r/n網頁正文全文高:"+ document.body.scrollHeight;
s += "/r/n網頁被捲去的高:"+ document.body.scrollTop;
s += "/r/n網頁被捲去的左:"+ document.body.scrollLeft;
s += "/r/n網頁正文部分上:"+ window.screenTop;
s += "/r/n網頁正文部分左:"+ 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;
//過濾數字
<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=語言設定 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">
//正則匹配
匹配中文字元的正規表示式: [/u4e00-/u9fa5]
匹配雙位元組字元(包括漢字在內):[^/x00-/xff]
匹配空行的正規表示式:/n[/s| ]*/r
匹配HTML標記的正規表示式:/<(.*)>.*<///1>|<(.*) //>/
匹配首尾空格的正規表示式:(^/s*)|(/s*$)(像vbscript那樣的trim函式)
匹配Email地址的正規表示式:/w+([-+.]/w+)*@/w+([-.]/w+)*/./w+([-.]/w+)*
匹配網址URL的正規表示式:http://([/w-]+/.)+[/w-]+(/[/w- ./?%&=]*)?
以下是例子:
利用正規表示式限制網頁表單裡的文字框輸入內容:
用正規表示式限制只能輸入中文: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>
//無提示關閉
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)
{
實用JS程式碼大全
相關文章
- 超級實用且不花哨的js程式碼大全JS
- js table表格操作大全程式碼例項JS
- 《程式碼大全》程式碼生成
- js實現開啟應用程式程式碼例項JS
- 饑荒程式碼怎麼用 饑荒控制檯程式碼大全
- 用 65 行程式碼實現 JS 動畫序列播放行程JS動畫
- jsp亂碼解決大全JS
- 讀完《程式碼大全》
- 讀《程式碼大全》有感
- jscript錯誤程式碼及相應解釋大全 (轉)JS
- 讓JS程式碼Level提升的忍者祕籍(實用)JS
- jQuery實現的JSONP應用程式碼例項jQueryJSON
- 程式碼 json 的運用JSON
- 程式碼大全回顧篇...
- MySQL錯誤程式碼大全MySql
- css顏色程式碼大全CSS
- 程式碼大全介紹 (轉)
- 實用 .htaccess 用法大全
- 推薦22個實用的一行Javascript程式碼Date大全,建議收藏JavaScript
- 最實用的微信小程式大全,持續更新中...微信小程式
- js 實現程式碼雨效果JS
- html實體編碼遇上js程式碼HTMLJS
- 用 JS 程式碼解釋 Java StreamJSJava
- 用node.js寫的程式碼Node.js
- 藍色畫面程式碼大全
- Android 程式碼規範大全Android
- 天氣預報程式碼大全
- 設為首頁程式碼大全
- 精讀《用160行js程式碼實現一個React》JSReact
- JScript錯誤程式碼及相應解釋大全-JavaScript基礎教程JSJavaScript
- 常見 HTTP 錯誤程式碼大全HTTP
- MySql 常見錯誤程式碼大全MySql
- 程式碼大全 閱讀與提問
- 程式碼大全2閱讀筆記筆記
- 348個實用電路圖大全
- Markdown 實用格式大全 (簡書可用)
- Docker 命令大全及應用實戰Docker
- JS語句大全JS