语义UI不检查选择更改

时间:2018-09-10 09:26:43

标签: javascript semantic-ui

我的语义UI无法识别,然后做出选择更改。在select中选择值时,semanticUI也将正确显示。但在取消选择时不会,但是Sermantic UI中的视图不会更新。

相反的方式起作用(语义ui->选择)。

$(function() {
  $('select').dropdown()
  $('select').addClass('mobile');
});

示例:http://jsfiddle.net/L2ap8udj/7/

编辑:我需要类似的内容。

window.setInterval(function() {
    $('select').dropdown('set exactly',$('select').val())
}, 1000);

但是那太客气了。如果我听选择中的更改,那么我会陷入无限循环。

$('select').on('change', function() {
    // loop of death, cause semantic ui's "set exactly" will trigger the change-event too
    $('select').dropdown('set exactly', $(this).val())
    console.log('change');
})

没有解决办法吗?

0 个答案:

没有答案