这是生成表单的 PHP 代码:form.php
<?php
echo '
<form action="/wall/comment.php" method="post" id="submit-comment-form" name="'.$postid.'">
<div class="write-comment-profile-pic">
<img src= "'.$myprofilepic.'" width="30" height="30""/>
</div>
<div class="write-comment-textbox-wrap">
<input type="text" class="textbox4" id="write-comment-textbox" value="Write a comment..." name="comment" style="width:65%;" />
</div>
</form>
';
?>
获取 form.php 的 Jquery 代码
$('#images img').click(function() {
$.get('form.php', function(data) {
$('#image-pop-up').html(data);
});
});
并且这里是需要提交表单的 jquery 代码:
$('#image-pop-up').on('submit', '#submit-comment-form', function() {
evt.preventDefault();
});
在 index.html image-pop-up div 中只是一个空的
<div id="image-pop-up">
</div>
这不起作用......怎么了?如何解决?