-1
結果は[{"BlockRefHandle":"11B67"}]
です。Jsonから特定の値を抽出する
どのようにしてデータ11B67
を抽出できますか?
$.ajax({
type: 'POST',
url: url,
data: getDatawithToken(params),
dataType : 'json', // expecting json returned from server
success: function (result) {
alert("success");
if (result.d.length > 0) {
// access first element
alert(result.d[0]);
}
}
});
?タグは混乱しています。 – user3185569