Copy code The code is as follows:<span style="font-family:Microsoft YaHei;"><select id="lstTest" onfocus="this.defaultIndex=this.selectedIndex;" onchange="this.selectedIndex=this.defaultIndex;"> <option value="1">test1</option> <option value="2">test2</option> <option value="3" selected="selected">test3</option> <option value="4">test4</option> <option value="5">test5</option> </select> </span> 1》Problem of setting the readonly attribute of the form: However, the readonly attribute has no effect on the three forms of radio, select, and checkbox 2》Set the disabled attribute of the form Problem: After setting the disabled attribute, the background cannot read data way: 1. Set the disabled attribute and store the form value in the hidden field 2. Use jQuery to control (set the form attribute disabled=true when loading the page, and set the form attribute disabled=false when submitting the form) Code: Reference jquery file <script type="text/javascript" src="../../js/jquery-1.3.2.js"></script> Controlling the disabled attribute with scripts Copy code The code is as follows:<span style="font-family:Microsoft YaHei;"><script type="text/javascript"> //Set disabled to take effect when loading $(document).ready(function(){ $("input[name=category]").attr("disabled",true); $("select[name=sonota_kbn]").attr("disabled",true); }); //Set disabled to fail when submitting $("input[name=modify]").click(function(){ $("input[name=category]").attr("disabled",false); $("select[name=sonota_kbn]").attr("disabled",false); }); </script> </span> Note this: input[name=category] Input is the form type (for example, select is a drop-down box) name=category The name of the form |
<<: CSS float (float, clear) popular explanation and experience sharing
Table of contents 1. Three modes of binlog 1.Stat...
Forwarding between two different servers Enable p...
React Native is a cross-platform mobile applicati...
In an article a long time ago, I talked about the...
Install Nginx First pull the centos image docker ...
Table of contents 1. Install the proxy module 2. ...
This article shares the specific code of canvas t...
Export database data: First open cmd and enter th...
Turn off ping scanning, although it doesn't h...
MySQL 8.0 compressed package installation method,...
JDK download address: http://www.oracle.com/techn...
Use wget command to download the entire subdirect...
1. Overflow content overflow settings (set whether...
1. Environment version Docker version 19.03.12 ce...
Preface What is the role of an agent? - Multiple ...