1. <select style="width:195px" name="role" id="role" onfocus="this.defaultIndex=this.selectedIndex;" onchange="this.selectedIndex=this.defaultIndex;"> This approach makes the drop-down box look the same as usual. The only difference is that after you pull down and select, it won’t respond to you. It’s the same whether you select it or not. It just ignores the customer's choice. 2. Set the disabled attribute <select style="width:195px" name="role" id="role" disabled="disabled"> This looks more direct, and it feels like read-only, and you can’t click or pull down. The words inside will also turn gray. When the attribute is set to "disabled", the select value cannot be passed when the form is submitted. Remove the disabled attribute before submitting $("#role").removeAttr("disabled"); jquery adds the attribute $("#role").attr("disabled","disabled"); |
<<: Nginx reverse proxy learning example tutorial
>>: Five things a good user experience designer should do well (picture and text)
Section Course content Hours 1 Web Design Overvie...
This article records the installation and configu...
Table of contents Preface optimization Derivative...
Table of contents 1. Vue3 component communication...
Table of contents 1. Don’t treat objects as Maps ...
Enter the mysql command: mysql -u+(user name) -p+...
Preface Recently, I have been taking some time in...
Table of contents CSS3 Box Model a. CSS3 filter b...
1. Command Introduction bzip2 is used to compress...
Table of contents Environment Setup Overview 1.Wh...
wedge Because the MySQL version installed on the ...
Version Chain In InnoDB engine tables, there are ...
What is k3d? k3d is a small program for running a...
Vue first screen performance optimization compone...
HTML form tag tutorial, this section mainly expla...