在 js 裡定義按鈕的響應函式

guile發表於2019-03-11

// 定義按鈕的響應函式
$('#aButton').on('click', function(){
    alert('test');
});

相關文章