<div id="partition">
hello
<input type="button" id="btn" value="submit">
</div> <!-- partitions ends -->
<!-- this posts the data and prepends the return data to partition div -->
<script type="text/javascript">
$(document).ready(function() {
$('#button').click(function(){
var content = $('#content').val();
var contentType = $('input[id=contentType]:checked').val();
$.post('classes/updateStatus.php', { content: content, contentType: contentType }, function(data)
{
$('#partition').prepend($('<div id="partition">'+data+'</div>').html(data));
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$('#btn').click(function(){
alert("hello");
});
</script>
这个脚本的问题是在将数据添加到分区 div 之后,它没有执行必要的操作。在这种情况下,它不会弹出警告框。