我需要自定义现有的打开购物车图像管理器以上传多张图像,当前它在tpl文件中如下所示。
$('#column-right a').live('click', function() {
debugger
if ($(this).attr('class') == 'selected') {
$(this).removeAttr('class');
} else {
$('#column-right a').removeAttr('class');
$(this).attr('class', 'selected');
}
});
$('#column-right a').live('dblclick', function() {
debugger
<?php if ($fckeditor) { ?>
window.opener.CKEDITOR.tools.callFunction(<?php echo $fckeditor; ?>, '<?php echo $directory; ?>' + $(this).find('input[name=\'image\']').attr('value'));
self.close();
<?php } else { ?>
parent.$('#<?php echo $field; ?>').attr('value', 'data/' + $(this).find('input[name=\'image\']').attr('value'));
parent.$('#dialog').dialog('close');
parent.$('#dialog').remove();
<?php } ?>
});
因为我真的是jquery的新手,所以我想知道是否可以更改此jquery方法以一次选择多个图像并根据我的需要进行自定义。在这里,我已经提交了选择图像并提交的代码双击时将其移到表格上。任何对此表示赞赏的帮助。