我的Popup.js将值传递给我的本地php文件进行处理,然后结果显示在popup.html上,如下所示:
$.get("get_charities.php", {scope: "ALL", m_val: formatted_val},function(charity_arr){
$('#convertor_content .result').remove();
console.log(charity_arr);
for(var i in charity_arr){
$('#convertor_content').append( "Enough to "+ charity_arr[i].pre_text+" <a href='" + charity_arr[i].url + "' target='_blank'>" + Math.round(charity_arr[i].impact_value) + " " + charity_arr[i].post_text + "</a>" + "<br>" + "<hr>" );
}
});
由于我使用的是本地php文件,如何测试我的popup.html是否正常工作?