问题描述
急救!!!我想让页面一加载时Table中的内容均为只读?点击按钮后改为可编辑。。。望高手指点
解决方案
解决方案二:
ForeachTable所有控件设置readonly属性
解决方案三:
<inputtype="text"value="sdf"/><tableborder="1"id="ss"borad="1"><tr><td><inputtype="text"value="sdf"></td></tr><tr><td><inputtype="text"value="sdf"></td></tr></table><inputtype="button"value="编辑table"onclick="set_disabled(false)"/><inputtype="button"value="锁定table"onclick="set_disabled(true)"/><scriptlanguage="javascript">functionset_disabled(boolean){vares=document.getElementById("ss").all;for(i=0;i<es.length;i++){es[i].disabled=boolean}}set_disabled(true);</script>
解决方案四:
<htmlxmlns="http://www.w3.org/1999/xhtml"><head><title></title><scriptsrc="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"type="text/javascript"></script><scripttype="text/javascript">functionsetDisabled(bo){$("#table1:input").attr("disabled",bo);}</script></head><body><inputid="Button1"type="button"value="启用"onclick="setDisabled(false)"/><inputid="Button2"type="button"value="禁用"onclick="setDisabled(true)"/><tableid="table1"><tr><td><inputid="Text1"type="text"/></td><td><inputid="Password1"type="password"/></td></tr><tr><td><selectid="Select1"><option>1</option></select></td><td><inputid="Checkbox1"type="checkbox"/><inputid="Radio1"type="radio"/></td></tr><tr><td><inputid="File1"type="file"/></td><td><textareaid="TextArea1"cols="20"rows="2"></textarea></td></tr></table></body></html>