JQUERY 设定文本框为只读

设置为只读

$("#xxx").attr("readonly","readonly");

取消只读:

$("#xxx").removeAttr("readonly");

你可能感兴趣的:(JQUERY 设定文本框为只读)