我制作了具有表单的 HTML 页面,在提交时,它使用此事件处理程序调用 JavaScript。
onClick = operation(this.form)
JavaScript是:
function operation(x) {
//url:"C:\Users\jhamb\Desktop\assignment_1_18_1_13\question_3\ques\form1.html",
url:"http://localhost:8080",
$.ajax({
data:{
comment:x.comment.value, // information from html page
email: x.email.value, // information from html page
url:x.url.value, // information from html page
name:x.name.value, // information from html page
}
}).done(function(serverResponse){
alert("response is ready"); //here you can handle server response
}).fail(function(err){
alert("ohhh!!! there is some error"); //here you can handle errors
});
//alert(obj.details[3].comment_value);
}
现在我想要的是在服务器和客户端之间进行通信,即在同一个系统上。我的代码不起作用。现在我该怎么办,请帮忙。