How to make select support readonly when the background cannot read data when the disabled attribute is set

How to make select support readonly when the background cannot read data when the disabled attribute is set

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

>>:  Detailed explanation of the English names corresponding to the font-family of Chinese fonts in CSS styles

Recommend

How to choose the format when using binlog in MySQL

Table of contents 1. Three modes of binlog 1.Stat...

How to use firewall iptables strategy to forward ports on Linux servers

Forwarding between two different servers Enable p...

Some experience in building the React Native project framework

React Native is a cross-platform mobile applicati...

Cleverly use CSS3's webkit-box-reflect to achieve various dynamic effects

In an article a long time ago, I talked about the...

Docker builds python Flask+ nginx+uwsgi container

Install Nginx First pull the centos image docker ...

JavaScript canvas realizes the effect of nine-square grid cutting

This article shares the specific code of canvas t...

Summary of MySql import and export methods using mysqldump

Export database data: First open cmd and enter th...

Basic security settings steps for centos7 server

Turn off ping scanning, although it doesn't h...

How to configure environment variables in Linux environment

JDK download address: http://www.oracle.com/techn...

wget downloads the entire website (whole subdirectory) or a specific directory

Use wget command to download the entire subdirect...

HTML scroll bar textarea attribute setting

1. Overflow content overflow settings (set whether...

How to install Solr 8.6.2 in Docker and configure the Chinese word segmenter

1. Environment version Docker version 19.03.12 ce...

How to use Nginx to proxy multiple application sites in Docker

Preface What is the role of an agent? - Multiple ...