使用Jquery禁用输入
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Jquery禁用输入相关的知识,希望对你有一定的参考价值。
simply disable an input (type=text) using Jquery.
//jQuery < 1.6 jQuery('input[name=name_of_the_input]').attr('disabled',true) //jQuery >= 1.6 jQuery('input[name=name_of_the_input]').prop('disabled',true)
以上是关于使用Jquery禁用输入的主要内容,如果未能解决你的问题,请参考以下文章
在jquery中禁用当前日期之前的日期并且输入在用户控件中并且用户控件在更新面板中