这是我的ajax电话
jQuery.post(ajaxurl, data, function(response) {
var slug = $(response).find(".return_product_cat").val();
alert(slug);
});
这是返回的html
<input type='hidden' class='return_product_cat' value='test_cat' />
当我发出警告时说未定义但应该说test_cat
?我该如何解决?