Home >Web Front-end >JS Tutorial >How to form a string with the id of the selected checkbox under jquery_jquery

How to form a string with the id of the selected checkbox under jquery_jquery

WBOY
WBOYOriginal
2016-05-16 18:15:07862browse
复制代码 代码如下:

var colorValues = new Array();
$('#image-colors').find('.color-block').each(function(){
if($(this).find('span').eq(0).hasClass('selected')){
colorValues.push($(this).attr('title'));
}
});
var colorString = colorValues.join(',');
alert(colorString);
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