当您键入新值并在select2外部单击而不输入空格或逗号时,文本将消失...这对前端用户来说有点混乱。如果它是一个新值,它应该自动创建为模糊标记。
var chart = d3.select(id)
.append("svg") //append svg element inside #chart
.attr("width", width + margin.left + margin.right) //set width
.attr("height", height + margin.top + margin.bottom); //set height
d3.json("https://dl.dropboxusercontent.com//s/339pul17xrdsk6w/data.json?raw=1", function(error, data) {
var bar = chart.selectAll("g")
.append("g") //append svg element inside #chart
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom);
});
当我添加selectOnClose:true时,(在3.3版本中它是selectOnBlur:true)似乎在最后的4.0.0版本中发生了循环错误
谢谢!
答案 0 :(得分:3)
在select2 4.0.0中,当selectOnClose
和closeOnSelect
(默认为true)都设置为true时,存在无限循环。见凯文的评论。此问题已resolved in select2 4.0.1(请参阅错误修复)。