我的网站使用常规登录系统。以下是调用Web服务的代码。
$(document).ready(function () {
$('#submit').click(function() {
$.ajax(
{
type: "POST",
url: "http://localhost:1204/ChromeExtensionService.asmx/HelloWorld",
//data: '{"id":"' + currentObjId.toString() + '"}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
alert('here');
alert(msg.d);
},
error: function (xhr, textStatus, errorThrown) {
alert(xhr.responseText);
}
此致 伊斯梅尔