作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何应用我的代码以使用 Ctrl+A
来选择全部?
http://jsfiddle.net/Fp4sJ/806/
首先,在输入框中填入数字EG: 333.44
,然后按Ctrl+A键。
为什么不选择输入中的所有数据,我该如何申请?
<script type="text/javascript" src="//code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript">
$(window).load(function(){
$(".allownumericwithdecimal").on("keypress keyup blur",function (event) {
//this.value = this.value.replace(/[^0-9\.]/g,'');
$(this).val($(this).val().replace(/[^0-9\.]/g,''));
if ((event.which != 46 || $(this).val().indexOf('.') != -1) && (event.which < 48 || event.which > 57)) {
event.preventDefault();
}
});
});
</script>
<input type="text" name="numeric" class='allownumericwithdecimal'>
最佳答案
从此处的事件中删除“keyup”触发器:
$(".allownumericwithdecimal").on("keypress keyup blur",function (event) {
就这样吧
$(".allownumericwithdecimal").on("keypress blur",function (event) {
关于javascript - 如何应用我的代码以使用 Ctrl+A 来选择全部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27264434/
我是一名优秀的程序员,十分优秀!