我試圖把條件與jQuery提交按鈕,似乎無法使任何工作。如果medLength == 0
那麼應該有一個錯誤消息。沒有錯誤信息,即使medLength
有一個值,提交按鈕不起作用。提交按鈕有一個圖形,所以我不能將其更改爲按鈕。任何幫助,將不勝感激。JQuery提交按鈕的條件
$("#submit").click(function get() {
if (medLength == 0) {
$(".errorStop").css().show;
} else {
$.ajax({
url: "postnew1.php",
type: "POST",
data: {
type: medType,
time: medLength,
length: counter
},
}).success(function (response) {
location.href = "meditate.php";
}).error(function (e) {});
}
});
下面的代碼並沒有if/else
聲明工作:
$("#submit").click(function get() {
$.ajax({
url: "postnew1.php",
type: "POST",
data: {
type: medType,
time: medLength,
length: counter
},
}).success(function (response) {
location.href = "meditate.php";
}).error(function (e) {});
});
什麼是medLength? – 2014-11-09 04:16:53
我認爲你應該這樣做:if(medLength。長度== 0){ – 2014-11-09 04:18:58
您在使用它之前是否曾想過檢查'medLength'包含的內容? – 2014-11-09 04:58:35