r_wr.php部分
//因為要打中文所以加入html
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
if($resultt){
echo $arr="重複填寫";
}
else{
echo "可以了";
}
ajax部分
alert(data)會顯示html語法,要如何只顯示echo 中文
若用先在r_wr.php 用數字 再到ajax用數字判斷 顯示alert 也可以
但請問還有甚麼方法嗎?
謝謝
$.ajax({
type: "POST",
url: "r_wr.php",
async:false,
data: decodeURIComponent($('#f2').serialize(),true),
dataType: "text",
error: function(jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
},
success: function(data) {
alert(data);
window.location.reload();
}
});
r_wr.php
$result ? 1 : null;
echo $result;
-------------------------------------
$.ajax({
type: "POST",
url: "r_wr.php",
async:false,
data: decodeURIComponent($('#f2').serialize(),true),
dataType: "text",
error: function(jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
},
success: function(data) {
if(data == 1){
alert('重複填寫');
}else{
alert('可以了');
}
window.location.reload();
}
});
其實很多種作法
不過最快就這樣
然後你的標題跟問題其實差蠻多的....
你犯的問題,跟你所理解的問題還有題目。
完全搭不上邊的。
你只是單純的後端跟前端語言分不清楚而已。
這解釋起來有太多說不清楚了。那就明天解釋吧。
PHP是一種開源的通用電腦手稿語言,尤其適用於網路開發並可嵌入HTML中使用。
HTML 超文本標記語言是一種用於建立網頁的標準標記語言。HTML是一種基礎技術,常與CSS、JavaScript一起被眾多網站用於設計網頁、網頁應用程式以及行動應用程式的使用者介面。
這...這兩個不太一樣哦....