思路:使用attr()方法设置文本框的disabled属性为true即可。下面具体演示:
1、HTML结构:设计一个文本框和一个按钮
2、jquery代码:
$(function(){
$("input:button").click(function() {
$("input:text").attr("disabled",true); // 禁用文本框(设置disabled属性为true)
});
});
3、效果演示:
userName=new JTextField();
userName.setEditable(false);// false为不能编缉,true为能
另外最好在使用的时候配在颜色
if(不能编缉)
userName.setBackground(Color.gray);//如果不能编缉就用灰色
else
userName.setBackground(Color.white);//如果不能编缉就用白色