Home  >  Article  >  Web Front-end  >  javascript restrict input and paste (IE, firefox test passed)_javascript skills

javascript restrict input and paste (IE, firefox test passed)_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:58:551096browse
复制代码 代码如下:

window["MzBrowser"] ={};
(function()
{
if(MzBrowser.platform) return;
var ua = window.navigator.userAgent;
MzBrowser.platform = window.navigator.platform;
MzBrowser.firefox = ua.indexOf("Firefox") > 0;
MzBrowser.opera = typeof(window.opera) == "object";
MzBrowser.ie = ! MzBrowser.opera && ua.indexOf("MSIE") > 0;
MzBrowser.mozilla = window.navigator.product == "Gecko";
MzBrowser.netscape = window.navigator.vendor == "Netscape";
MzBrowser.safari = ua.indexOf("Safari") > - 1;
if(MzBrowser.firefox) var re = /Firefox(s|/)(d (.d )?)/;
else if(MzBrowser.ie) var re = /MSIE( )(d (.d )?)/;
else if(MzBrowser.opera) var re = /Opera(s|/)(d (.d )?)/;
else if(MzBrowser.netscape) var re = /Netscape(s|/)(d (.d )?)/;
else if(MzBrowser.safari) var re = /Version(/)(d (.d )?)/;
else if(MzBrowser.mozilla) var re = /rv(:)(d (.d )?)/;
if("undefined" != typeof(re) && re.test(ua))
MzBrowser.version = parseFloat(RegExp.$2);
}
)();
function upLoadKey(e, object)
{
if((document.all) ? true : false)
{
window.event.keyCode == 9 ? (window.event.returnValue = true) : (window.event.returnValue = false);
}
else
{
if(object.value == "" && typeof e.which == "number")e.preventDefault();
if(object.value != "") object.blur();
}
}
function version(object)
{
if(MzBrowser.firefox && MzBrowser.version == 2)object.blur();
}
function clearValue(id)
{
var up = (typeof id == "string") ? document.getElementById(id) : id;
if (typeof up != "object") return null;
var tt = document.createElement("span");
tt.id = "__tt__";
up.parentNode.insertBefore(tt, up);
var tf = document.createElement("form");
tf.appendChild(up);
document.getElementsByTagName("body")[0].appendChild(tf);
tf.reset();
tt.parentNode.insertBefore(up, tt);
tt.parentNode.removeChild(tt);
tt = null;
tf.parentNode.removeChild(tf);
}

// 页面代码
复制代码 代码如下:









Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn