我想從jquery和ajax的textarea更新MySQL數據庫,但無法獲得文本區域的更新內容傳遞到PHP頁面。與jQuery的AJAX更新ajax
我有一個頁面,在頁面上,我點擊一個按鈕,打開一個圖層並調用edit_box函數。
然後該圖層使用數據庫中的數據填充表單域。
textarea是一個nicedit盒子,並且一直運行良好,直到我點擊保存並且我對textarea所做的任何更改都沒有通過。只有原始內容。
它似乎很明顯,但我似乎無法捉摸
任何幫助讚賞問題
繼承人的代碼
html頁面
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
#popupbox{
padding:0;
width: 99%;
height: auto;
margin: 0px auto;
position:absolute;
background: #FBFBF0;
border: solid #000000 2px;
z-index: 9000;
font-family: arial;
visibility: hidden;
}
</style>
<script type="text/javascript" src="http://js.nicedit.com/nicEdit-latest.js"></script>
<script>
function get_edit_content(box_id,page_ref,template_ref)
{
$.get("get_content.php", { box_id: box_id, page_ref: page_ref, template_ref:template_ref })
.done(function(data) {
document.getElementById("box_id").value = box_id;
document.getElementById("edit_content").value=data;
var area1 = new nicEditor({fullPanel : true}).panelInstance("edit_content",{hasPanel : true});
});
}
function edit_box(showhide,box_id,page_ref,template_ref){
if(showhide == "show"){
get_edit_content(box_id,page_ref,template_ref);
document.getElementById('popupbox').style.visibility="visible";
}else if(showhide == "hide"){
document.getElementById('popupbox').style.visibility="hidden";
}
}
$(document).ready(function()
{
$('#sub').click(function (e)
{
e.preventDefault();
$.ajax({type:'POST', url: 'update_textarea.php', data:$('#myFrm').serialize(), success:
function(response)
{
alert(response);
}
});
});
});
</script>
</head>
<body>
<div id="popupbox">
<form id="myFrm">
<input type="hidden" name="page_ref" value="<? echo $page_ref; ?>" />
<input type="hidden" name="template_ref" value="<? echo $template_ref; ?>" />
<input type="hidden" id="box_id" name="box_id"/>
<textarea name="edit_content" id="edit_content" style="width: 500px; height:500px;"></textarea>
<button id="sub" >Save</button>
<center><a href="javascript:edit_box('hide');">close</a></center>
</form>
</div>
</body>
</html>
PHP頁面
<?
include("connect.php");
$page_ref = $_POST['page_ref'];
$template_ref = $_POST['template_ref'];
$box_id = $_POST['box_id'];
$edit_content = addslashes($_POST['edit_content']);
if(mysql_query("UPDATE site_content SET content='$edit_content' WHERE page_ref='$page_ref' AND template_ref='$template_ref' AND box_id='$box_id' AND box_type='text'"))
{
echo "page_ref=".$page_ref." template_ref=".$template_ref." box_id=".$box_id." edit_content=".$edit_content;
}
else
{
echo "error";
}
?>
您正在使用[an **過時的**數據庫API](http://stackoverflow.com/q/12859942/19068)並應使用[現代替換](http://php.net/manual/) EN/mysqlinfo.api.choosing.php)。你也**易受[SQL注入攻擊](http://bobby-tables.com/)**,現代的API會使[防禦]更容易(http://stackoverflow.com/questions/60174/best-way-to-prevent-sql-injection-in-php)自己從。 – Quentin