我正在用表单替换 div 的文本,以便用户可以用它来编辑它,但我不知道如何将变量的内容从 jQuery 传递到 PHP,以便表单可以获取之前的文本和 id帖子。
$(document).on('click', '.editar', function(e) {
var that = $(this);
//Post id
var box = that.closest('.comment-parent');
var link = box.find('.postId');
var postId = link.attr('name'); //This is the id
//Text
var parent = that.parent().parent();
var sibling = parent.siblings('.text');
var text = sibling.text(); //This is the text
sibling.replaceWith('<?php $edited_text = 'Text'; $edited_id = 0; echo '<form action="Includes/comment-edit.inc.php" method="post"><input type="hidden" name="postId" value="'.$edited_id.'"><textarea name="edited-text">'.$edited_text.'</textarea><br><button type="submit" name="edited-submit" style="float: right;">Update</button></form>'; ?>');
});
编辑:
我需要的是将 jQuery postId和text变量传递到 PHP 中,因此 $edited_text 和 $edited_id 变量将具有相同的信息。我现在拥有的这些 PHP 变量的值是临时的,因此页面在显示代码时不会调用错误。:C
我并不是试图将变量传递到不同的文件,而是传递到使用replaceWith();放置的表单内部的“值”。在 jQuery 里面。
jeck猫