成功之后,我想根据存在的值显示不同的值。例如,如果$('#add')。val()中有一个值,我想在成功函数中显示'Video added'。如果$('#remove')。val()有一个其中的值,我想将'Video removed'显示为成功函数的一部分。#add或#remove在给定时间内都会有一个值。如何启用它?
<script type="text/javascript">
$(document).ready(function() {
$("#test").submit(function(event){
event.preventDefault();
$.ajax({
type:"POST",
url:"/edit_favorites/",
data: {
'video_add': $('#add').val(), // from form
'video_remove': $('#remove').val() // from form
},
success: function(){
$('#message').html("<h2>Video added!</h2>")
}
});
return false;
});
});
</script>
答案 0 :(得分:4)
如果您确定只有一个文本字段具有值,则可以执行以下操作:
$('#message').html('<h2>' + $('#add').val() !== '' ? 'Video added' : 'Video removed' + '!</h2>' )
答案 1 :(得分:0)
如果只是检查文本就足够了,你可以使用这段代码:
<script type="text/javascript">
$(document).ready(function() {
$("#test").submit(function(event){
event.preventDefault();
$.ajax({
type:"POST",
url:"/edit_favorites/",
data: {
'video_add': $('#add').val(), // from form
'video_remove': $('#remove').val() // from form
},
success: function(){
if ( $('#add').text() ) {
$('#message').html("<h2>Video added!</h2>");
} else if ( $('#add').text() ){
$('#message').html("<h2>Video removed!</h2>");
} else {
$('#message').html("<h2>Wasn't either add or remove!</h2>");
}
}
});
return false;
});
});
</script>
我认为#add
或#remove
是文字。关键是if
检查:
if ( $('#add').text() ) {
//... add is not empty because there is some text in it...
如果#add
或#remove
可能包含文字或任何其他元素,您可以使用:empty
选择器进行检查:
if ( !$('#add:empty').length ) {
//... #add is not empty so something was added successfully ...
如果#add
或#remove
是<input>
个元素,例如文本框,您可以执行以下相同的检查:
if ( $('#add').val() ) {
//... add is not empty ...
答案 2 :(得分:0)
我喜欢在后端脚本执行时返回响应,XML看起来像这样
<status>true</status>
<successMessage>Video deleted</successMessage>
或
<status>false</status>
<errorMessage>Video not found on the server</errorMessage>
的Javascript
success: function (response) {
if($(response).find("status").text()=="true"){
$(".success").html($(response).find("successMessage").text());
$(".success").show();
}else{
$(".error").html($(response).find("errorMessage").text());
$(".error").show();
}
}