我正在尝试使用我的jquery post方法将数据发布到index.jsp
,但它什么也没做。
<script>
$('input#submit').click(function(e){
//prevent submitting the form (if there is a form)
e.preventDefault();
var html = $("body").html();
var data = {
html: html
};
$.post("index.jsp", data);
});
</script>
</head>
<body>
<input type="submit" id="submit" value="send" name="submit">`
答案 0 :(得分:0)
您的网址错误(indx.jsp!= index.jsp),请更改为
$.post("index.jsp", { data: data } );
如果您希望获得该页面上的值。顺便说一句,你从身体发送整个HTML!
答案 1 :(得分:0)
将帖子调用更改为:
$.post("index.jsp",
{
html: html,
},
function(data,status){
alert("Data: " + data + "\nStatus: " + status);
});