我试图隐藏基于IP地址的元素。
使用这个脚本,我可以写出DOM中的IP地址:
<script type="text/javascript" src="https://l2.io/ip.js?var=userip"></script>
<script type="text/javascript">document.write("Your IP is :", userip)</script>
如何根据特定的IP地址将此目标移除以删除下面的元素?
答案 0 :(得分:1)
只需使用文件准备好并检查ip。如果它符合条件你的东西
var ip=['123.123.123','111.111.11']
$(document).ready(function () {
if(ip.indexOf(userip)!=-1)
{ your code here
}
});