success: function (response) {
for (var i in response)
{
var serialized_data = '['+response[i].position+']';
alert(serialized_data);
}
}
serialized_data的结果= [{“x”:0,“y”:0,“width”:2,“height”:2}]
数据通过jquery ajax从表中获取并存储在变量中。 如何在jquery中获取x,y,width和height的数据?你能帮我找一个解决方案吗?
答案 0 :(得分:0)
使用以下流程获取值
$.each(eval(response),function(i,item)
{
var x=item.x;
var y=item.y;
var width=item.width;
var height=item.height;
}
答案 1 :(得分:0)
感谢您的支持。我得到了结果。
success: function (response) {
for (var i in response)
{
var obj = jQuery.parseJSON( response[i].position );
var x = obj.x;
var y = obj.y;
var width = obj.width;
var height = obj.height;
}
}