I am trying to use JQuery to highlight the checkboxes checked by a user,
and when they will be un-highlighted when the user un开发者_如何学Gochecked those checkoxes.But how is it possible to do this effect?
styling checkbox differs in every browsers... take a look
so my suggestion would be:
- wrap checkbox with span.
- then give span a padding like 2px or 1px.
- then when a checkbox is checked, give its span a style like red background.
Not sure what you mean by "highlight", but here goes:
$(document).ready(function() {
$("#checkboxID").change(function() {
if ($(this).attr("checked")) {
//checkbox has been checked
$(this).css("border", "1px solid #ff0000");
}
else {
//unchecked
$(this).css("border", "0");
}
});
});
I've not used the jQueryUI Effect() method before, but it has a 'highlight' method.
So I would try something along these lines.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js"></script>
$('#mycheck:checked').effect('highlight');
精彩评论