如何使用jquery从xmlhttprequest获取类属性

时间:2013-08-17 09:46:27

标签: javascript jquery ajax arrays

我正在尝试编写一个代码,用于从xmlhttprequest获取的响应中提取“代码”。我到目前为止。

enter image description here

我是javascript和jquery的新手,我的方法是提取像“ADDIDIONAL25”这样的代码,如右图所示?有没有更好的方法呢?我计划从snap中显示的数组中提取“代码”。

1 个答案:

答案 0 :(得分:1)

尝试

var codes = $('.coupon_code_text', req.responseText).map(function(){
    return $(this).attr('code')
}).get();
console.log(codes)//it is an array containing all the code values