我在尝试将textarea的值发送到mysql时遇到问题。
输入postusername
的值已成功发送,但不是textarea的值。
当它工作时(我不知道它为什么停止),该值是第一次发送的,但如果我尝试发送另一个值而不刷新页面,则先前的值再次发送而不是插入textarea的新值。
现在,textarea在警报窗口中返回一个空值,并且只在mysql中记录输入postusername
。
<form id="newpostform" method="post" style="width:90%;margin-left:auto;margin-right:auto;margin-top:-35px;margin-bottom:10px;font-family:Calibri,Arial;">
<textarea class="editbook" name="newpostcontent"></textarea>
<div style="margin-top:10px;margin-right:25px;">
<input type="text" value="<?php echo $username0; ?>" name="postusername">
<input class="Button" style="float:right;margin-bottom:10px;margin-left:10px;" type="button" value="Preview">
<input class="Button" style="float:right;margin-bottom:10px;margin-left:10px;" type="button" value="Save draft">
<input id="sendButton" class="Button" style="float:right;margin-bottom:10px;" type="button" value="Send">
</div>
</form>
<script>
$(function () {
$("input#sendButton").on("click", function () {
$.post('newpost.php', $("form#newpostform").serialize(), function (data) {
alert($("textarea[name=newpostcontent]").val());
});
});
});
</script>
newpost.php
require("../db_info.php");
mysql_query("
INSERT INTO
post (
author,
content
)
VALUES (
'".$_POST['postusername']."',
'".$_POST['newpostcontent']."'
)"
);
如果我这样做,例如:
mysql_query("
INSERT INTO
post (
author,
content
)
VALUES (
'".$_POST['postusername']."',
'Why doesn't this work?'
)"
);
$_POST['postusername']
和短语“为什么这不起作用?”是正确写在sql中的。
感谢您的关注。
答案 0 :(得分:1)
试试这个
var content=$("textarea[name=newpostcontent]").val(),
username=$("input[name=postusername]").val();
$.post('newpost.php', {newpostcontent:content,postusername:username}, function (data) {
alert(content);
});
希望这有效