Bài tập TOEIC – Word form Test 3

25/12/2014

0 responses on "Bài tập TOEIC - Word form Test 3"

Leave a Message

Anh ngữ ÂnTOEIC

Luyện thi TOEIC 4 kỹ năng

Địa chỉ: 87, Hoàng Diệu 2, P. Linh Trung, Q. Thủ Đức, TPHCM

Điện thoại: 0972421061

 

Học viên đang online

There are no users currently online

Bản đồ định vị lớp học

top
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); }); }