我的守则如下:
$( .reply ).click(function() {
$leftwrap = $(this).parent();
$comment = $(leftwrap).parent();
$id = $comment.attr( id );
if($(this).siblings( .reply-form ).length == 0) { //check whether or not the form as been initiated yet
$(this).parent().append( <?php $replytimestamp = strtotime("now"); ?>
<form class="reply-form" action="/scripts/reply-process.php" method="post">
<input type="hidden" name="replytimestamp" value="<?php echo $replytimestamp; ?>">
<input type="hidden" name="replyto" value=" + $id + ">
<label for="name" class="reply-label">Name</label>
<input type="text" name="name" class="reply-input">
<label for="message" class="reply-label">Reply</label>
<textarea name="message"class="reply-ta"></textarea>
<input class="reply-submit" type="submit" name="submit" value="submit" />
</form> );
$(this).siblings( .reply-form ).hide();
$(this).siblings( .reply-form ).slideDown();
} else $(this).siblings( .reply-form ).slideToggle(); //if it is, toggle it
});
当我点击时,就没有发生任何事情,没有滑坡,也没有。 我在大火中找不到任何东西。 因此,有什么想法? 感谢!