关于JS如何实现表单的readonly
展开全部
是要全部只读,还是仅让表单中的标签只读啊
每个标签都有它自己的属性即ReadOnly,只要将其设置为true即可.
<input type="text" id="t1" Readonly="true"/>这样即可.
如果是select标签,则设置他的disabled属性为true
<select id="s1" disabled="true/>
每个标签都有它自己的属性即ReadOnly,只要将其设置为true即可.
<input type="text" id="t1" Readonly="true"/>这样即可.
如果是select标签,则设置他的disabled属性为true
<select id="s1" disabled="true/>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
当让可以
function check(){
var txtN = document.getElementById("test");
txtN.setAttribute("readonly",true,0);
}
setAttribute 这个方法一定要注意,有三个参数
object.setAttribute(sName, vValue [, iFlags])
last arg
iFlags: Optional. Integer that specifies one the following flags: 0 When the attribute is set, it overwrites any attributes with the same name, regardless of their case.
1 Default. The case of the attribute that you set is respected when it is set on the object.
function check(){
var txtN = document.getElementById("test");
txtN.setAttribute("readonly",true,0);
}
setAttribute 这个方法一定要注意,有三个参数
object.setAttribute(sName, vValue [, iFlags])
last arg
iFlags: Optional. Integer that specifies one the following flags: 0 When the attribute is set, it overwrites any attributes with the same name, regardless of their case.
1 Default. The case of the attribute that you set is respected when it is set on the object.
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
只读的那只是信息,用个table或div 等元素不就可以做到了吗?为什么一定要用表单呢?
表单是为了方便与用户交互的。一个只读的表单,多少感觉这是没事找事。。。
表单是为了方便与用户交互的。一个只读的表单,多少感觉这是没事找事。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<input type="text" readonly>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询