我发布的程序我使用添加按钮来添加更多按钮。但是当我单击带有值删除的添加按钮时,不会发生任何事件。
<?php
?>
<html>
<head>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$('.input').click(function()
{
$("p").prepend('<input type="button" id="hh" value="remmove" />');
});
$('#hh').on('click',function()
{
alert('raman');
});
});
</script>
</head>
<body>
<p>
<input type="button" class="input" value="add"/>
</p>
</body>
</html>
请让我知道这段代码有什么问题。当我点击 id 为“hh”的按钮时,我无法获得结果,即警报。