Home  >  Article  >  Web Front-end  >  Code for beautifying checkbox and radio controls using jquery and pictures (packaged download)_jquery

Code for beautifying checkbox and radio controls using jquery and pictures (packaged download)_jquery

WBOY
WBOYOriginal
2016-05-16 18:16:321233browse

效果图:
Code for beautifying checkbox and radio controls using jquery and pictures (packaged download)_jquery 
HTML:

复制代码 代码如下:















JS:
复制代码 代码如下:

$(function(){
$('#chklist').hcheckbox();
$('#radiolist').hradio();
$('#btnOK').click(function(){
var checkedValues = new Array();
$('#chklist :checkbox').each(function(){
if($(this).is(':checked'))
{
checkedValues.push($(this).val());
}
});
alert(checkedValues.join(','));
alert($('#radiolist :checked').val());
})
});

引入jquery文件是必须的
还有一个是 checkbox 的插件JS文件 jquery-hcheckbox.js, 在下载的压缩包中有 源文件 和 DEMO
如果在此基础上您做出了更美的请通知我哦~~
演示地址 http://demo.jb51.net/js/jQuery_HCheckbox/index.html
打包下载地址
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn