如果我有一个formatSelection
包含图像的标记并且window.location.href
在select2-selecting
事件中具有,则图像已损坏。如果我删除window.location.href
,图像可以工作并且可以在新页面加载之前看到。
$('.select2#topbarSearch').on("select2-selecting", function(e) {
window.location.href = 'www.example.com';
});
function selectionFormat(data) {
var markup = "<table class='search-result'><tr>";
if (data.image !== undefined) {
markup += "<td class='data-image'><img style='height: 25px;' src='" + data.image + "'/></td>";
}
markup += "<td class='data-info-selected'><div class='data-title'>" + data.title + "</div>";
markup += "</td></tr></table>";
return markup;
}