Today I suddenly thought that the styles of check boxes in HTML can be changed are limited, and it takes a lot of code to make a check box now, so I thought of a simple way to implement it. It has been fully proven that this is feasible. Without further ado, I will just post the source code for your reference. Result: When not selected: ![]() ![]() Image background: ![]() ![]() Code: HTML code snippet: Copy code The code is as follows:<a name="checkWeek" class="divCheckBoxNoSel"></a> Monday javascript code snippet: Copy code The code is as follows:$("a[name='checkWeek']").click(function(){ if($(this).hasClass('divCheckBoxSel')){ $(this).removeClass('divCheckBoxSel'); }else{ $(this).addClass('divCheckBoxSel'); } }); CSS code snippet: Copy code The code is as follows:.divCheckBoxNoSel{ background: url("../image/checkboxNoSel.jpg") no-repeat center center; float:left; width:15px; height:15px; border:1px solid #BDBDBD; color:#FFF; } .divCheckBoxSel{ background: url("../image/checkboxSel.jpg") no-repeat center center; float:left; width:15px; height:15px; border:1px solid #BDBDBD; color:#FFF; } There are many ways to distinguish each hyperlink, and in fact, radio button like text can also be easily realized in this way, thus saving time. |
<<: How to use Xtrabackup to back up and restore MySQL
>>: How to use css overflow: hidden (overflow hiding and clearing floats)
The docker create command can create a container ...
Table of contents # Post-data preparation # SQL q...
Table of contents 1. MySQL replication process 2....
Programs in Docker containers often need to acces...
Without further ado, these three methods are: ren...
Elastic stack, commonly known as ELK stack, is a ...
Table of contents 1. Why Redux 2. Redux Data flow...
Table of contents MySQL multiple instances Multi-...
One environment Alibaba Cloud Server: CentOS 7.4 ...
Preface This article mainly introduces the releva...
For example: <link rel="stylesheet" h...
First time writing. Allow me to introduce myself....
When associating two tables, a foreign key could ...
Table of contents rc.local method chkconfig metho...
<br />It has been no more than two years sin...