我正在尝试编写一个代码,用于从xmlhttprequest获取的响应中提取“代码”。我到目前为止。
我是javascript和jquery的新手,我的方法是提取像“ADDIDIONAL25”这样的代码,如右图所示?有没有更好的方法呢?我计划从snap中显示的数组中提取“代码”。
答案 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