大家好,我用java做了一个非常简单的sayHello的webservice,这个就不用帖代码了,测试,想用javascript, jquery, 或extjs调用,但就是不成,大家看一下是为什么?
jquery调用的代码
<html>
<head>
<title>test</title>
<script src="jquery.js" type="text/javascript"></script>
<script language='javascript'>
$(function () {
$("#btnclick").click(function () {
//$.support.cors = true;
$.ajax({
url: 'http://localhost:8088/Demo/DemoPort/sayHello',
type: 'post',
cache: false,
data: {'name': '12345'},
dataType: 'jsonp',
jsonp: 'callback',
jsonCallback: 'testP',
success: function (response) {
alert('success');
},
failure: function(XMLHttpRequest, textStatus, error) {
alert('error');
}
});
});
function testP(data) {
alert(data);
}
});
</script>
</head>
<body>
<form id="form1">
<input value='click' type="button" id="btnclick" />
</form>
</body>
</html>
太笨了。谁看一下,我如何做?
....
--
FROM 59.49.77.*