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)
Add inline styles to the required links: Copy code...
method: By desc: Neither can be achieved: Method ...
Table of contents 1. The simplest example 2. Cust...
For detailed documentation on installing the comp...
1. Get the mysql image docker pull mysql:5.6 Note...
Under Ubuntu 18.04 1. sudo apt install python ins...
For Centos installation of MySQL, please refer to...
Problem Reproduction When using HTML for editing,...
This article describes the sql_mode mode in MySQL...
Introduction The meta tag is an auxiliary tag in ...
I'm playing with big data recently. A friend ...
Table of contents getApp() Define variables at th...
mktemp Create temporary files or directories in a...
nginx installation Ensure that the virtual machin...
Table of contents Overview Install Gulp.js Create...