This question already has answers here:
Check if Internet Connection Exists with Javascript? [duplicate]
                                
                                    (9个答案)
                                
                        
                                5年前关闭。
            
                    
我知道您不能在HTML中添加条件,但是我该怎么做。

如果我可以连接互联网,则需要在HTML中添加此行。如果无法检查是否可以连接互联网,则可以在web.config中放置一个可配置的值,然后进行检查,但我什至不知道如何在HTML中执行此操作。

<script type="text/javascript" src="http://maps.google.com/maps/api/js?v=3.2&sensor=false"></script>

最佳答案

你可以用javascript做到

if (navigator.onLine) {
    // you are online...
}


应用于您的情况将是:

<script type="text/javascript">
if(navigator.onLine)
  document.write('<scri'+'pt src="http://maps.google.com/maps/api/js?v=3.2&sensor=false"></'+'script>');
</script>


那不是最好的解决方案,但可以解决您的问题

关于javascript - 将条件放入HTML中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21848856/

10-09 21:42