本文介绍了如何使输入类型编号不可编辑但仍能正常工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! < input readonly ='readonly'id ='testid'name ='testname'type ='number'min ='1'> 我试过这个,但没有工作。有没有办法做到这一点?如使用CSS或JavaScript。 我的jsfiddle。 http://jsfiddle.net/jmasejo/vta96mp1/ 解决方案你好我有一个工作代码,但我认为这不是最好的方法。我合并了来自 如何禁用退格,如果输入字段以外的任何事情都集中在使用jquery 和TuomasK的答案这里是我的工作代码。 http://jsfiddle.net/vta96mp1/1/ HTML < input class ='testInput'id ='testid'value ='1'name =' testname'type ='number'min ='1'> JS $(#testid)。keypress(function(evt){ evt.preventDefault(); }); $(document).keydown(function(e){ var elid = $(document.activeElement).hasClass('textInput'); console.log(e .keyCode +'&&'+ elid); if(e.keyCode === 8&&!elid){ return false; }; }); <input readonly='readonly' id ='testid' name='testname' type='number' min ='1'>I tried this one but not working. is there any way to do it? like using css or javascript.my jsfiddle.http://jsfiddle.net/jmasejo/vta96mp1/ 解决方案 hello I have a working code but i think this is not the best way. I merged the answer fromHow to disable backspace if anything other than input field is focused on using jqueryand the answer of TuomasKhere is my working code.http://jsfiddle.net/vta96mp1/1/HTML<input class='testInput' id ='testid' value = '1' name='testname' type='number' min ='1'>JS$("#testid").keypress(function (evt) {evt.preventDefault();});$(document).keydown(function(e) { var elid = $(document.activeElement).hasClass('textInput'); console.log(e.keyCode + ' && ' + elid); if (e.keyCode === 8 && !elid) { return false; };}); 这篇关于如何使输入类型编号不可编辑但仍能正常工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-10 15:48