jQuery:如果JSON数据与ID InnerText匹配,则更改CSS

时间:2017-09-05 16:04:04

标签: javascript jquery json geolocation ip

我有{{1>} 客户IP 地理位置国家/地区,然后在另一部分我有a fruit 客户所在国家/地区(不基于IP,但基于注册)。

我有一些div正在运行以搜索客户登录IP并获取国家/地区代码+城市。我想要做什么一旦我有divjQuery我希望脚本检查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地址

0 个答案:

没有答案