我有一个html文档,我想使用ajax将数据作为参数传递给jsp。然后jsp可以将参数放入sql表中。我正在使用包含信息的变量放入数据。
var ajaxname = document.getElementById('name').value;
var ajaxscores = document.getElementById('scores').value;
function ajaxLoad{
$.ajax({
url: 'http://url.com/urljsp/urljsp.jsp',
type: 'get',
data: '{scores=ajaxscores,&name=ajaxname,&make=apple,&games=foo}',
success: function(data) {
alert('Load was performed.');
}
});
}
答案 0 :(得分:0)
数据应该是对象而不是字符串。在你的情况下,它可以是这样的
date: {scores: 'ajaxscores', name: 'ajaxname', make: 'apple', games: 'foo'}