我正在使用 jQuery 制作动态按钮。现在我想将此按钮用作任何其他按钮。这是我的 HTML:
<label class='twobuttons'><div id="submit-button" >GO!</div></label>
<div id='result'></div>
这是我的 JavaScript:
$(document).ready(function(){
$('#submit-button').click(function(){
$('#result').append("<label><div id='share' class='longbutton'>Share this route</div></label>");
$('#result').append("<label><div id='goback' class='longbutton'>Create another one !</div></label>");
});
$('#share').on("click",function(){
alert('hi');
});
$('#goback').on("click",function(){
alert('hello');
})
});
我在这$('#share').on(
部分特别有问题。