我在外部页面上运行 AJAX 查询,并试图仅从 County 返回数据。我当前的脚本正在从所有表格单元格中提取文本,但我一辈子都无法简单地提取县名。
当前正在运行的脚本:
$( ".zipCode" ).each(function( intIndex ){
var zipCodeID = $(this).attr('id');
console.log('http://www.uscounties.org/cffiles_web/counties/zip_res.cfm?zip='+zipCodeID);
$.ajax({
url: 'http://www.uscounties.org/cffiles_web/counties/zip_res.cfm?zip='+zipCodeID,
type: 'GET',
success: function(res) {
var headline = $(res.responseText).find("p").text();
console.log(headline);
$('#'+zipCodeID).empty();
$('#'+zipCodeID).append(headline);
}
});
});
正在查询的页面示例: http ://www.uscounties.org/cffiles_web/counties/zip_res.cfm?zip=56159
这应该适用于所有输入的 ZIPS。页面布局相同,我只是无法获得仅返回县的功能。任何帮助或建议都会很棒。谢谢!