0
我有一個谷歌地圖,像這樣的信息窗口,jQuery Mobile的動態按鈕添加點擊
var content = '<div id="link"><input type="button" value="Report this light" id="reportBtn"/></div>';
我使用jQuery Mobile的當信息窗口彈出打開地圖上綁定一個「click」事件,但它多恩斯我的代碼:
$(document).on('pageinit', function() {
$('#reportBtn').on('click', function() {
alert('it works');
});
});