我想顯示錯誤消息,但我不清楚是否收到錯誤消息。我只想顯示消息,但在我的情況下,我顯示消息和標記html,我已經將內容類型更改爲text/plain。我的代碼:響應文本ajax中的java servlet
response.setContentType("text/plain");
response.sendError(response.SC_INTERNAL_SERVER_ERROR, "user atau pass salah men!");
在ajax中的錯誤消息,我alert(error.responseText);顯示:
用戶atau通過salah男人!
如何獲取沒有html標籤的消息?謝謝
錯誤消息顯示與HTML標籤,body標籤,和頭部標籤 –