日期:2014-05-16 浏览次数:20349 次
页面跳转: window.location.href('地址')
window.open('地址', '_self')
打开新窗口:
window.open('地址', '_blank')
只显示地址栏:window.open('地址', 'title', 'location=1, height=200, width=500')
只显示状态栏:window.open('地址', 'title', 'status=1')
只显示工具栏:window.open('地址', 'title', 'toolbar=1')
只显示菜单栏:window.open('地址', 'title', 'menubar=1')
一个不少:window.open('地址', 'title)
光棍但可以调整大小:window.open('地址', 'title', 'resizable=1')
去掉所有空格:
Object.replace(/^\s+|\s+$/g, "")
屏蔽鼠标:
oncontextmenu="window.event.returnValue=false"
取消选取:
onselectstart="return false"
不允许粘贴:
onpaste="return false"
关闭输入法:
<input style="ime-mode:disabled">
不允许另存为:
<noscript><iframe src=*.html></iframe></noscript>
得到上一页来源:
document.referrer
弹出窗口总在最上:
<body >
弹出确认对话框:
comfirm('文本')"
<script>if(confirm('文本')){//确定}else{//取消}
回车转换Tab键:
if(window.event.keyCode==13){event.keyCode=9}
返回上一页:
history.go(-1)
重新加载页面:
window.location.reload()
子页面中调父页面中的方法:
window.opener.function()
子页面中访问父页面中名为name的控件值:
window.opener.name.value
子页面中访问父页面中表单中名为name的控件值:
window.opener.formName.nam.value
得到控件的绝对位置:
function getIE() {
var t = e.offsetTop; var l = e.offsetLeft; while (e = e.offsetParent) { t += e.offsetTop; l += e.offsetLeft; } alert("top=" + t + " and left=" + l); } 光标停在文本框文字的最后:
function toEnd() {
var e = event.srcElement; var r = e.createTextRange(); r.moveStart("character", e.value.length); r.collapse(true); r.select(); } <input type="text" value="end" > 屏蔽功能键(Shift, Alt, Ctrl)
function testKey() {
if (event.shiftKey) { // altKey; ctrlKey alert("Shift"); } } 不要滚动条:
<body scroll="no">
让竖条没有:
<body style="overflow:scroll; overflow-y: hidden">
让横条没有:
<body style="overflow:scroll; overflow-x: hidden">
去掉图片链接点击后图片周围的虚线:
<a href="#" ><img src="test.jpg"></a>
在子窗体中刷新父窗体:
window.opener.location.reload()
设置打开窗口的大小:
<body 100)">
设置打开窗口的位置:
<body 100)">
得到窗体大小:
document.body.clientWidth;
document.body.clientHeight;
TEXTAREA自适应文字行数:
<textarea rows="1" cols="17" onpropertychange="this.style.posHeight=this.scrollHeight></textarea>
屏蔽脚本错误:
function killErrors() {
return true; } window.onerror=killErrors(); 判断是否是字符:
免责声明: 本文仅代表作者个人观点,与爱易网无关。其原创性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容、文字的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
|