我嘗試從選擇框中選擇一個值時調用一個函數。我還會選擇一個默認值,並在頁面上顯示該值。爲什麼選擇更改方法不起作用?
這是我的選擇框:
<select id="messagingMode" class="bootstrap-select" >
<option value="1" selected="selected">Webhooks messaging</option>
<option value="2">Real time messaging</option>
</select>
這是JS:
$('#messagingMode').on('change',showCorrespondingAuthorizationBtn(this));
,功能只是打印暫時選擇的值:
function showCorrespondingAuthorizationBtn(select) {
console.log(select.val());
}
沒有什麼打印在控制檯中,爲什麼這不起作用?