Enable input when checking; otherwise, disable javascript code-form special effect.

Source: Internet
Author: User
The only thing you can do is add a bit of beautification to make the user experience more floor-level, including the bold border, focus acquisition, and checkbox border line hiding. The Code is as follows:


Window. onload = function (){
Var price = document. getElementById ('price ');
Price. disabled = true;
Price. style. padding = '2px 3px ';
Price. style. background = '# eee ';
Price. style. border = '1px solid # ccc ';
Var tj = document. getElementById ('tj ');
Tj. onclick = function (){
If (tj. checked = true) {// editable
Price. disabled = false;
Price. style. background = '# fff ';
Price. style. border = '2px solid # ff7d00 ';
Price. style. padding = '2px 3px ';
Price. focus ();

} Else {
Price. disabled = true;
Price. style. background = '# eee ';
Price. style. border = '1px solid # ccc ';
Price. style. padding = '2px 3px ';
}
}

}


The Code is as follows:




The only thing you can do is add a bit of beautification to make the user experience more floor-level, including the bold border, focus acquisition, and checkbox border line hiding.
Test code

<Script type = "text/javascript"> window. onload = function () {var price = document. getElementById ('price'); price. disabled = true; price. style. padding = '2px 3px '; price. style. background = '# eee'; price. style. border = '1px solid # ccc '; var tj = document. getElementById ('tj '); tj. onclick = function () {if (tj. checked = true) {// You can edit the price. disabled = false; price. style. background = '# fff'; price. style. border = '2px solid # ff7d00 '; price. style. padding = '2px 3px '; price. focus ();} else {price. disabled = true; price. style. background = '# eee'; price. style. border = '1px solid # ccc '; price. style. padding = '2px 3px '; }}} script
[Ctrl + A select all Note: If you need to introduce external Js, You need to refresh it to execute]

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.