mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-15 00:12:43 +09:00
#471 checkbox 다중선택시 문제 처리
This commit is contained in:
parent
22f1019abe
commit
37f5b93e40
1 changed files with 2 additions and 2 deletions
|
|
@ -59,9 +59,9 @@ if(jQuery) jQuery.noConflict();
|
|||
if(typeof(options.wrap) == "string") options.wrap ='#'+options.wrap;
|
||||
|
||||
if(options.wrap) {
|
||||
obj = $(options.wrap).find('input[name='+itemName+']:checkbox');
|
||||
obj = $(options.wrap).find('input[name="'+itemName+'"]:checkbox');
|
||||
} else {
|
||||
obj = $('input[name='+itemName+']:checkbox');
|
||||
obj = $('input[name="'+itemName+'"]:checkbox');
|
||||
}
|
||||
|
||||
if(options.checked == 'toggle') {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue