Set down on the JSP list box select is read-only and retains the original value __JS

Source: Internet
Author: User

A. Method for event handling:

function Setreadonly (obj) {
if (obj) {
Obj.onbeforeactivate=function () {return false;};
Obj.onfocus = function () {Obj.blur ();};
Obj.onmouseover = function () {obj.setcapture ();};
Obj.onmouseout = function () {obj.releasecapture ();};

}
}

Two. If you are editing the page, the request list is read-only and dimmed, and when the form is submitted to retain the original value, jquery's writing:

Note: The components to import jquery

var it=["level", "possibility", "priority"];//put the ID of the tag in an array
$.each (It,function (index,value) {
Setreadonly ($ ("#" +value). Get (0));//Call method above
$ ("#" +value). After ("<input type= ' hidden ' name= ') +$ (" # "+value). attr (" name ") +" ' value= ' "+$ (" # "+value). Val () +" '/ > ");
$ ("#" +value). attr ("Disabled", "disabled");
$ ("#" +value). CSS ("Color", "gray");
});

This is a cross browser

Summary of the above method: When the select is set to Disabled, the value is assigned to a hidden field with the same name as SELECT, so that the effect of the value can be obtained even if the background is read-only.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.