基本的に、ユーザーが保存をクリックすると関数を呼び出します。この関数はテキストエリアからコンテンツを取得し、データベースに追加するphpファイルに渡します。私が使用する js 関数がいくつかあります。1 つはコンテンツを切り替えるためのもので、もう 1 つは保存するためのものです。とにかく、テキストエリアで何も編集せずに保存をクリックすると、すべて正常に動作します。ただし、何らかの方法でテキストを編集すると (文字を削除して再度追加しても)、機能の一部が機能しなくなります。コンテンツの変更を担当する部分。動作しなくなった部分に印を付けました。
I have tested to see whether it was the content I was passing.. it was not. Now it seems like the textarea itself gets messed up and wont show new information. I tested it by putting 2 textareas, one that holds the content to be stored and is edited, and another just to display changes (changes which stop working on the main text area).
function saveContent() {
document.getElementById("editing").style.display = 'none';
document.getElementById("observing").style.display = '';
document.getElementById("contentArea").readOnly = true;
if (window.XMLHttpRequest) // code for IE7+, Firefox, Chrome, Opera, Safari
{
xmlhttp = new XMLHttpRequest();
alert("first if");
}
else // code for IE6, IE5
{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
//alert("second if");
}
xmlhttp.onreadystatechange = function() {
//alert(xmlhttp.readyState+" : "+xmlhttp.status);
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
alert("finished");
document.getElementById("contentArea").innerHTML = "working"; < ---- * * THIS PART STOPS WORKING IF I MODIFY THE TEXTAREA IN ANY WAY * *
}
}
//var Content = document.getElementById("contentArea");
var content = "contenttt";
//alert(content);
xmlhttp.open("get", "saveContent.php?q=" + content_id + "&content=" + content, true);
xmlhttp.send(null);
}