我創建使用IF ELSE
在當用戶點擊BOX A和盒子B ......然後,假設箱A已經滿了,用戶點擊「保存按鈕」後,確認消息會過濾顯示器說...... 「你選擇的盒子已滿,你想保存其他項目嗎?」
這裏是我的代碼:
<?php
//else if......
else if($box== "BOX A" && $row[item] == "100")
{
echo "<script type='text/javascript'>";
echo "var r=confirm('The Box you chosen is already full. Do you want to save the other items?')";
echo "if (r==true){";
echo "alert('You pressed OK!')}";
echo "else{";
echo "alert('You pressed Cancel!')}";
echo "</script>";
}
?>
我有問題的代碼,當我嘗試使用echo "enter here";
對其進行跟蹤其隨時停止程序閱讀這個代碼後
echo "<script type='text/javascript'>";
然後它會跳到這裏:
echo "</script>";
結果:
它沒有顯示彈出消息...所以我需要的是顯示彈出消息,我不知道爲什麼,爲什麼它不顯示......沒有按鈕涉及顯示確認信息......如果用戶想要繼續保存,如果其中一個盒子已滿,如果不是他/她將按下取消,則它將提醒用戶...
注意: 我只是PHP和Javascript的初學者..
在此先感謝您。
您需要從基本的PHP教程開始。 –
刪除'<?php'和'?>',因爲您已經在使用PHP – GroovyCarrot
@GroovyCarrot ...對不起,我已經修改了我的代碼...我只是錯過了複製它...... – user2826499