JS技术

javascript 限制输入和粘贴 IE和火狐3.x下测试通过

字号+ 作者: 来源:    2014-11-17 20:00 我要评论( )

javascript 限制输入和粘贴 IE和火狐3.x下测试通过,阅读javascript 限制输入和粘贴 IE和火狐3.x下测试通过,htmlheadscript type=

<html>
<head>
<script type="text/javascript">
  function upLoadKey(e){
   ((document.all) ? true:false) == true ? (window.event.returnValue = false): e.preventDefault();
  }
</script>
</head>
<body>
         <input name="textfield3" type="file" class="input" id="textfield3" size="30" value="" onkeydown="upLoadKey(event);" onpaste="return false;" onmousedown="document.oncontextmenu = function() { return false;}" onmouseout="document.oncontextmenu = function() { return true;}" style = "ime-mode:disabled" />
</body>
</html>


但是这段代码在 火狐2.x的下面,还是无法对onpaste()这个函数的支持,好消息是火狐的3.x版本支持了一个函数

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • 老生常谈,JavaScript闭包中的this对象

    老生常谈,JavaScript闭包中的this对象

    2016-02-26 10:21

  • 学习JavaScript之this,call,apply

    学习JavaScript之this,call,apply

    2016-01-28 20:45

  • JavaScript复习笔记--字符串

    JavaScript复习笔记--字符串

    2016-01-27 17:16

  • WEB前端教程-JavaScript里的类和继承

    WEB前端教程-JavaScript里的类和继承

    2016-01-21 15:28

网友点评
r