如何解决与jQuery UI和jQuery的冲突? Datepicker给出错误

时间:2013-05-01 20:13:26

标签: jquery-ui datepicker jquery

我正在尝试将jQuery datepicker用于使用jQuery 1.3.2的网站上的表单,但它不起作用。我必须为我的一些表单功能引用一个较新的jQuery库,以及使用datepicker的jQuery ui。我已经将noConflict用于较新的jquery库,但它仍然无效。我得到Uncaught TypeError:无法在控制台中读取null的属性'document'。更新/删除1.3.2参考不是一种选择。

这是我的小提琴,它有效。但我在Chrome(不是FF)中得到上述错误,并且datepicker将无法在我的网站上运行。 http://jsfiddle.net/pnA33/

有人可以帮忙吗?它在本地工作但不在服务器上(这是一个开发环境,因此我无法共享链接)。 I found this但是因为我对jQuery相对较新,所以它已经超出了我的想法。

jQuery的:

            <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
            <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
            <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
            <script type="text/javascript">
            var jQuery_1_9_1 = jQuery.noConflict(true);
            jQuery_1_9_1(document).ready(function() {
            jQuery_1_9_1( "#datepicker" ).datepicker({ minDate: -1, maxDate: "+24D" });
            jQuery_1_9_1('#pancettaForm').change(function () {
                       jQuery_1_9_1('.address,#new-ship-date').hide();
                       if (jQuery_1_9_1('#ship-address').prop('checked')) {
                          jQuery_1_9_1('.address').show();
                       }
                       else if (jQuery_1_9_1('#ship-date').prop('checked')) {
                          jQuery_1_9_1('#new-ship-date').show();
                       }
                       else if (jQuery_1_9_1('#ship-both').prop('checked')) {
                          jQuery_1_9_1('.address, #new-ship-date').show();
                       }
                    });

            });

            function validateForm()
            {
            var x=document.forms["pancettaForm"]["order-number"].value;
            if (x==null || x=="")
            {
            alert("Please provide your order number from the confirmation email sent immediately after placing your order.");
            return false;
            }

            }
            </script> 

HTML:

        <form name="pancettaForm" method="post" action="http://lizlantz.com/lcform.php" id="pancettaForm" onsubmit="return validateForm()">
                <input type="hidden" value="Pancetta Order Update" name="subject"> 
                <input type="hidden" value="cookware/partners_10151_-1_20002" name="redirect">
                <ol>
                    <li>
                    <label for="update-ship">I'd like to:</label> 
                        <input id="ship-address" name="update-ship" type="radio" value="update-ship-address"/> Have pancetta shipped to a different address than my skillet<br />
                        <input id="ship-date" name="update-ship" type="radio" value="update-ship-date" /> Have pancetta shipped sooner than June 14, 2013 <br />
                        <input id="ship-both" name="update-ship" type="radio" value="update-both" /> Make changes to both the shipping address and shipping date
                    </li>
                    <li>                
                    <label for="order-number"><em>*</em>Order Number (available in order confirmation email):</label> 
                        <input type="text" name="order-number">
                    </li>             
                    <li>                
                    <label for="full-name"><em>*</em>Recipient Full Name:</label> 
                        <input type="text" name="full-name">
                    </li>   
                    <li class="address" style="display: none;">
                        <label for="address">
                            <em>*</em>Address
                        </label> 
                        <input type="text" name="address">
                        <label for="address2">
                            Address Line 2
                        </label> 
                        <input type="text" name="address2">
                    </li>
                    <li class="address" style="display: none;">
                        <label for="city">
                            <em>*</em>City
                        </label> 
                        <input type="text" name="city">
                        <label for="state">
                            <em>*</em>State
                        </label> 
                        <select name="state">
                            <option value="AL">Alabama</option>
                            <option value="AK">Alaska</option>
                        </select>
                        <label for="zip">
                            <em>*</em>Zip Code
                        </label> 
                        <input type="text" name="zip">
                    </li>
                    <li id="new-ship-date"  style="display: none;">
                        <em>*</em><label for="updated-ship-date">New Ship Date:</label>
                        <input type="text" id="datepicker" name="updated-ship-date" value="Update Your Ship Date" />
                    </li>            
                    <li>
                        <label for="phone">
                            <em>*</em>Phone (for delivery questions)
                        </label> 
                        <input type="text" name="phone">
                    </li>               
                </ol>
                       <input type="submit" id="button" name="submit"  value="Update Pancetta">

              </form>

1 个答案:

答案 0 :(得分:1)

啊哈哈!实际上你不能同时在同一个文档实例上运行两个版本的jQuery ...因此这里的问题。此解决方案直接来自SplendìdAngst在此帖子中的答案Can I use multiple versions of jQuery on the same page?

基本上你必须在输入文件“main loop”之前声明你的noConflict版本我想你可以调用它。

在document.ready call之外声明你的noConflict变量...使用标准的$(document).ready()语法,然后在ready闭包中使用(并且仅使用)你的noconflict变量。应该这样做。

我没有对此进行过测试,但它有意义,并且您不需要花太多时间调整代码就可以尝试一下。

TIL关于jQuery的新内容:)