しかし、class="selectpicker"
を追加すると、ブートストラップセレクトが使用されます。セレクトボックスクリック機能が検出されなくなったブートストラップ
私は機能を持っている:
$("select").click(function()
{
if (this.id.match(/rest/g))
{
return;
}
name = this.id;
console.log(name);
select_id = name.replace("_free", "");
radio = select_id + '_radio';
//$('input:radio[name='+radio+']:checked').prop('checked', false).checkboxradio("refresh");
document.getElementById(select_id + "_radio3").checked = true;
}
これが行うことは、その後にチェックラジオボタンを変更する、クリックされたかを選択決定しています。しかし、selectpickerで追加した後は、multiple
のものだけがラジオボタンを変更します。
これを回避する方法はありますか。
https://jsfiddle.net/34ksL2h5/3/
(class="selectpicker"
を削除し、問題が表示されます)
フィドルを提供できますか? –
htmlコードも追加できますか? – sahil
@HermLuna追加 –