- Home
- Khác
- Bài tập TOEIC - Word form Test 3
Bài tập TOEIC – Word form Test 3
document.addEventListener("DOMContentLoaded", function () {
document.getElementById("submitBtn").addEventListener("click", function () {
console.log("Submit button clicked!");
sendToChatGPT();
});
});
function sendToChatGPT() {
let userText = document.getElementById("userInput").value;
if (!userText) {
document.getElementById("response").innerText = "Please enter a sentence!";
return;
}
document.getElementById("response").innerText = "Processing...";
console.log("Sending request to ChatGPT...");
fetch("https://antoeic.vn/chatgpt-handler.php", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ text: userText })
})
.then(response => response.json())
.then(data => {
console.log("ChatGPT Reply:", data);
if (data.reply) {
document.getElementById("response").innerText = "ChatGPT: " + data.reply;
} else {
document.getElementById("response").innerText = "Error: No valid response from ChatGPT.";
}
})
.catch(error => {
document.getElementById("response").innerText = "Error: " + error;
console.error("Fetch error:", error);
});
}
0 responses on "Bài tập TOEIC - Word form Test 3"