下面我有一个带有ajax代码的jquery,它将通过将新数据从一组输入(用户进行更改的输入集)插入另一组输入(输入集)来显示更改课程详细信息的值它说明了课程的当前详细信息)。如果需要更改,课程的下拉菜单也会更改以适应新的更改:
function submitform() {
$.ajax({
type: "POST",
url: "updatecourse.php",
data: $('#updateCourseForm').serialize(),
success: function(html){
$("#targetdiv").html(html);
//Get and store the new course number and name.
var newCourseNo = jQuery("#newCourseNo").val();
var newCourseName = jQuery("#newCourseName").val();
var newDuration = jQuery("#newDuration").val();
//Set your current course number and name to your number and name.
jQuery("#currentCourseNo").val(newCourseNo);
jQuery("#currentCourseName").val(newCourseName);
jQuery("#currentDuration").val(newDuration);
//Find the currently selected course and update it.
var selectedOption = jQuery("#coursesDrop option:selected");
var label = selectedOption.text().split(" - ");
selectedOption.text(newCourseNo + " - " + newCourseName);
$('#targetdiv').show();
}
});
}
现在$("#targetdiv")
是显示从通过 ajax 访问的 php 页面检索到的成功或错误消息的 id:
更新课程.php:
...//mysqli code
echo "<span style='color: green'>Course details have been updated:<br/>" . $newcourseno . " - " . $newcoursename . "</span>";
}else{
echo "<span style='color: red'>An error has occured, Course Details have not been updated</span>";
}
但是我遇到的问题是,如果在 jquery 中检索到来自 php 代码的错误消息,那么我不希望课程详细信息在 jquery 中进行编辑以适应当前课程文本输入以插入新的详细信息。我只希望在出现成功消息时发生这种情况。
如果出现错误消息我不希望发生任何更改,则当前课程详细信息输入和新课程详细信息输入在提交之前保持不变。
但是如何才能做到这一点呢?