PHP是,即使頁面加載和的JavaScript是,在瀏覽器中執行一個客戶端的語言之前在服務器上執行服務器端語言。因此,沒有辦法寫PHP在JavaScript,因爲沒有達到相同的目的。
如果你想通過JavaScript聯繫PHP頁面,你最好使用AJAX請求。
示例使用了Ajax請求:
var
xhttp = new XMLHttpRequest,
response;
xhttp.onreadystatechange = function() {
if (yhttp.readyState === 4 && yhttp.status === 200) {
response = xhttp.responseText // This variable contains the response from PHP
}
};
xhttp.open("POST", "YourPhpFile.php", true);
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.send("number=" + number);
在YourPhpFile.php:
在這個文件中,做你想要做的計算和echo
的東西,將確定如果操作成功或失敗。無論你把後echo
將轉嫁到JavaScript的:
echo "Success!"; // This string will be passed on to JavaScript
然後在JavaScript中,後response = xhttp.responseText
進行檢查,並執行相應的代碼,你的情況。
你想添加js代碼的位置? – Hamid
你的項目中有html嗎?如果你有,嘗試綁定(session-> userdata('kullaniciadi'))到html輸入,如果用戶沒有登錄並且添加tiklama類,如果用戶登錄tiklama class delete,則可以從javascript –
訪問 –