本文介绍了jQuery错误:不是函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在DemoScript.js文件中使用下面的函数,但我收到dateRangePicker不是函数的错误

I am using below function in a DemoScript.js file and i am getting error that dateRangePicker is not a function

/*Transcendent Date Selector - chrisstormer.com DEMO Scripts for running the date range picker within the article page*/
    $(document).ready(function() {  enhancedDomReady(function(){
            $('.toggleRPpos').click(function(){
                if($('div.rangePicker').css('float') == 'left') {
                    $('div.rangePicker').css('float', 'right');
                    $('.toggleRPpos').html('Align date picker to the left');
                }
                else {
                    $('div.rangePicker').css('float', 'left');
                    $('.toggleRPpos').html('Align date picker to the right');
                }
                return false;
            });

            // create date picker by replacing out the inputs
        $('.rangePicker').html('<a href="#" class="range_prev"><span>Previous</span></a><a href="#" class="rangeDisplay"><span>Pick a Date</span></a><a href="#" class="range_next"><span>Next</span></a>').dateRangePicker({menuSet: 'pastRange'});

        });
        });

推荐答案




这篇关于jQuery错误:不是函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 13:36