FB plugin

Source Code Display Plugin

星期四, 11月 29, 2018

Bootstrap set select box select value


Method 1. doesn't work for me.

$('#yourSelectBox').val(yourvalue); // not work

Therefore, I try the following code to resolve:

$('#yourSelectBox option').each(function () {
     if (this.value == yourvalue) {
        this.selected = true;
     }
});

沒有留言:

熱門文章