0

编辑 - 感谢下面一位友好的评论者,我设法解决了这个问题。事实证明这是非常基本的,因为我没有在正确的位置调用我的函数。我将函数调用移至打开我正在使用 DragDealer 的 div 组的 click 事件,现在它可以工作了。

我正在尝试为我正在构建的网站上的滑块设置Dragdealer插件

在我稍微调整浏览器窗口大小之前,我的滑块按钮是不可移动的。滑块本身在页面加载时位于隐藏的 div 中,因此我已将对 DragDealer 的调用连接到它的父 div 打开时,但它仍未初始化。

<div id="assetTable">
    <div id="assetTableHeaders">
        <div class="investmentHeading odd">Investment option</div>
            <div class="investmentHeading even">Allocation</div>
        </div>
        <div class="investmentOption" id="global_property">
            <div class="investmentTitle"><a href="#">Global Property</a></div>
            <div class="investmentSlider">
                <div class="slider short">
                    <div class="slider-bg">
                        <div class="slider-indicator"><div class="active">&nbsp;</div></div>
                <div id="slider_global_property" class="dragdealer">
                                                <div class="handle ir" style="left: 208px;">Drag</div>
                </div>
            </div>
        </div>
    </div>
    <div class="investmentInput">
    <input type="text" id="input_global_property" class="investmentPercent" name="input_global_property" value="0%">
</div>
</div>
</div>  

“asseTtable”被隐藏,直到通过 jquery 由 onclick 处理程序展开

function setUpSliders() {
var val_global_property = document.getElementById('input_global_property');

var sliderGlobalProperty = new Dragdealer('slider_global_property',
    {
        steps: 100,
        animationCallback: function(x, y)
    {
        val_global_property.value = (Math.round(x * 100) + '%');
    }
});

$('#input_global_property').change(function(){
    sliderGlobalProperty.setStep(stripPercentages());
        return false;
    });

}

$('#investmentOption_selfSelect').click(function(){
    setUpSliders();
});
4

2 回答 2

2

我在 DragDealer 上遇到了同样的问题,并通过谷歌在这里找到了这个答案。如图所示,我使用 JQuery 从一个 HTML 页面视图转换到另一个 HTML 页面视图,并且在 fadeOut/fadeIn 完成之前调用了我的 setUpSliders()。阅读此答案后,我将代码更改为在 fadeIn 完成后调用 setUpSliders() 。这解决了问题。这个例子可以帮助别人。

//switch from Home page to Charts page DOM
var switchToChartsPage = function () {
    $("#HomePage").fadeOut(fadeOutTime, function () {
        $("#chartsPage").fadeIn(fadeInTime, function () { setUpSliders(); }); 
        //Note: delay setting up DragDealer sliders until after DOM settles
    });
    startChartPage();
}

var startChartPage = function () {
    showPanels = true; //initialization switch
      <some code removed>
    carouselPaneCount = buildCharts(); //build the charts and tables html
    //setUpSliders(); // do NOT set up the sliders here - see comment above
    $(".chartspagetitle").text(pageTitleTextLine[currentLocalStorageKey]);
}
于 2014-02-12T22:23:54.760 回答
1

感谢一位友好的评论者@Juhana,我设法解决了这个问题。事实证明这是非常基本的,因为我没有在正确的位置调用我的函数。我将函数调用移至打开我正在使用 DragDealer 的 div 组的 click 事件,现在它可以工作了。

于 2013-02-21T08:42:53.363 回答