我需要测试一个 html 页面,该页面是我通过 verizon 连接的手机制作的

i need to test an html page i made by a mobile connected through verizon

我有这个页面

http://m.bsmitho.com/

我需要通过 verizon 移动设备(移动设备连接而非 wifi)连接的人来测试我的页面并告诉我是否出现 verizon 移动设备徽标?

我用过的代码:

     <script type="text/javascript">
     $(document).ready(function() {
         $.get("http://ipinfo.io", function (response) {
             if (response.org == "AS6541 Verizon Online LLC") {
             document.getElementById("verizon").style.display = "block";
                 }
          }, "jsonp");
     });

     </script>

我需要你的帮助,很快。

谢谢

是的,这有效

<script type="text/javascript">
 $(document).ready(function() {
     $.get("http://ipinfo.io", function (response) {
         if (response.org == "AS6541 Verizon Online LLC") {
         document.getElementById("verizon").style.display = "block";
             }
      }, "jsonp");
 });

 </script>