我有{{1>} 客户IP 和地理位置国家/地区,然后在另一部分我有a fruit
客户所在国家/地区(不基于IP,但基于注册)。
我有一些div
正在运行以搜索客户登录IP并获取国家/地区代码+城市。我想要做什么一旦我有div
和jQuery
我希望脚本检查JSON国家/地区是否与帐户所在国家/地区匹配
data.city
IPAddress selector = data.country_name
帐户国家/地区选择器= $('#quick-links > div > ul > li:nth-child(1) > a').on('click', function(){
$.getJSON('https://ipapi.co/'+$('#view-accounts > div.inner-content > div.login-history-grid.datagrid.expand.selected.focus > div.tbl > div.row.login-history.content-item.selected.focus > div.col.IP.Address').text()+'/json', function(data){
alert(data.city);
alert(data.country_name);
});
});
我对如何查找#view-accounts > div.inner-content > div.login-history-grid.datagrid.expand > div.tbl > div:nth-child(2) > div.col.IP.Address
是否与#customer-info > div.inner.info-view > div:nth-child(8) > label.country.hider.default > span
匹配感到有点迷失
如果他们匹配,我想要做任何事,
如果他们不匹配,我想提醒或更改country_name
以突出显示 IP地址。