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)
Because some dependencies of opencv could not be ...
A few days ago, I saw a post shared by Yu Bo on G...
Preface Usually, a "paging" strategy is...
Sometimes we save a lot of duplicate data in the ...
This article shares with you the specific code of...
First, let’s think about a question: To insert su...
This article briefly introduces the process of se...
Table of contents 1. Usage of DATETIME and TIMEST...
Table of contents 1. What is event delegation? 2....
I always feel that designers are the most sensiti...
During the front-end development process, a situat...
useState useState adds some internal state to a c...
When using a docker container, sometimes vim is n...
In the previous article, I introduced the detaile...
Table of contents Preliminary preparation Deploym...