我有一个 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.');
}
});
}