Jquery版本冲突Web主机

时间:2016-03-05 05:37:07

标签: javascript jquery html jquery-ui

我有这个代码,我需要在我的网页上工作,它实际上是脱机工作,但当我上传到mi网页时它不起作用。我已经进行了几次测试,我知道它是两个版本的jquery,但这些是日历和get指令的必要条件,这对程序的使用非常重要。第一部分是日历工作,jquery版本1.12.0是使用get指令。

一些想法?

网络平台是one.com

   <!DOCTYPE html >


<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>


<script>

$(document).ready(function() {
   $("#datepicker").datepicker();
 });


function revtemp() {
$.get("https://docs.google.com/spreadsheets/d/1CG2a49fTJyXxk9CUFNpX4dueGGhxfxmtTZkN5wj0U80/gviz/tq?tqx=out:html&tq=select+K", function(data){
da=data;      
alert(da);   
        },"text");
}


window.setInterval(revtemp,5000);
 </script>


</head>
<body>

<form action="">
  <label> Seleccionar Fecha:</label>
  <input type="text" name="datepicker" id="datepicker" readonly="readonly" size="12" />
</form>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

您可以通过这种方式加载Jquery 一个在页眉或其他页脚。

  • 或者您可以在页脚部分验证是否加载了标题jquery。

                if((typeof jQuery =='undefined')||(jQuery.fn.jquery!=“1.9.1”)){                 document.write(unescape(“%3Cscript src ='/ Responsive / Scripts / jquery-1.9.1.min.js'type ='text / javascript'%3E%3C / script%3E”));             }