<input type="text" id="input_id"/>

Jquery 方式:

$("#input_id").attr("readonly",true); //设置为只读模式
$("#input_id").attr("style","border:1px;border-bottom-style:none;border-top-style:none;border-left-style:none;border-right-style:none;"); // 去掉边框

其实就是把 style 设置 为: "border:1px;border-bottom-style:none;border-top-style:none;border-left-style:none;border-right-style:none;"

posted on 2014-01-10 11:50  鲲入海  阅读(320)  评论(0)    收藏  举报