近期Facebook又不知更新了什麼,每天都收到6,7個 "XXXX tagged a photo of you on Facebook",但明明我沒有相片和那個人有關係。

$("InputButton").click(function () {
$.ajax({
type: "POST",
url: "webservice/DataService.asmx/GetAccount",
data: "{AccountNo: '123' }",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg){ alert(msg); }
});
});
$("InputButton").click(function () {
alert(GetAccountName('123'));
});
function GetAccountName(Code)
{
var r = '';
$.ajax({
type: "POST",
url: "webservice/DataService.asmx/GetAccount",
data: "{AccountNo: '" + Code +"' }",
contentType: "application/json; charset=utf-8",
dataType: "json",
//async: false, //假設沒有這行
success: function(msg){
if (msg.length > 0) { r = msg; }
}
});
return r;
}
async: false,