这是使用 HTML5 的更好解决方案data attributes
。必须将文件中编写的代码修改jquery.dropkick-1.0.0.js
如下(行号仅适用于v1.0.0
):
// Line 39 -- Add "<img>"
// HTML template for the dropdowns
dropdownTemplate = [
'<div class="dk_container" id="dk_container_{{ id }}" tabindex="{{ tabindex }}">',
'<a class="dk_toggle">',
'<span class="dk_label">{{ label }}<img src="{{ icon }}"/></span>', /* << */
'</a>',
'<div class="dk_options">',
'<ul class="dk_options_inner">',
'</ul>',
'</div>',
'</div>'
].join(''),
// Line 51 -- Add "<img>" (string broken down here for readability)
// HTML template for dropdown options
optionTemplate = '<li class="{{ current }}">' +
'<a data-dk-dropdown-value="{{ value }}">{{ text }}' +
'<img src="{{ icon }}"/></a></li>'; /* << */
此外,将以下行添加到插件的选项中
// Line 98 -- add "data.icon"
// Don't do anything if we've already setup dropkick on this element
if (data.id) {
return $select;
} else {
data.settings = settings;
data.tabindex = tabindex;
data.id = id;
data.$original = $original;
data.$select = $select;
data.value = _notBlank($select.val()) || _notBlank($original.attr('value'));
data.label = $original.text();
data.options = $options;
/* Add this attribute */
data.icon = $original.data('icon'); /* << */
}
在_build
函数中的以下行之前,
// Line 318
if (view.options && view.options.length) {
添加以下行:
// Line 317. To be placed after other "template = template.replace" statements
template = template.replace('{{ icon }}', view.icon);
最后,在循环内部之后
// Line 321
var // ...
oTemplate = optionTemplate
;
添加以下行
// To be placed after other "oTemplate = oTemplate.replace" statements
oTemplate = oTemplate.replace('{{ icon }}', view.icon);
这可能不是最佳编码实践(monkeypatching),因为icon
未设置数据属性时代码可能会中断。
我建议您添加一些代码来检查icon
数据属性值的值,并创建两个模板:一个用于选项,另一个用于默认下拉列表。然后可以选择要使用的模板。函数也是如此_build
,与monkeypatching 一样,它取决于view.icon
值(是否已定义)。