嵌套页面地址: https://4759.cn/api/ua/ip-ua-index.php
特性: 自适应iframe高度、无滚动条、免费可直接嵌入、自动展示访客IP与归属地
将下方完整代码复制到任意网页即可快速嵌入访客IP归属地展示面板,子页面通过postMessage自动传回高度,父页面无需写死iframe高度,手机电脑浏览器自适应高度。
注意:安全校验说明:仅接收来自子页面域名 https://4759.cn 发来的消息,防范恶意站点攻击;请勿修改此处域名,修改后iframe自适应高度将会失效。
完整嵌入代码
<style>
#ipIframe{
width: 100%;
border: none;
}
</style>
<iframe id="ipIframe" src="https://4759.cn/api/ua/ip-ua-index.php" frameborder="0" allow="geolocation" scrolling="no"></iframe>
<script>
const ipIframe = document.getElementById('ipIframe');
//监听子页面发来的高度消息
window.addEventListener('message', function(e){
// 安全校验:仅接收子页面 https://4759.cn 发来的消息,防止恶意站点
if(e.origin !== "https://4759.cn") return;
if(e.data && typeof e.data.iframeHeight === 'number'){
ipIframe.style.height = e.data.iframeHeight + "px";
}
});
</script>