重新加载页面以显示注入的jQuery UI元素?

时间:2013-10-22 18:50:30

标签: javascript jquery html css jquery-ui

我正在编写一个jQuery插件来玩一个简单的游戏。游戏将所有必要的html注入到调用它的div中,并将其css表链接到头部。我遇到的问题是,如果我在注入后调用location.reload,它会在添加HTML之前将页面刷新回来。如果我不调用它,除了我的jQuery UI Sliders之外的所有内容都会出现。我如何重新加载那些滑块,以便它们在注入后显示出来? (如果我只是将HTML粘贴到测试HTML文件的主体中,那么一切都很完美 - 唯一的问题是当我动态添加它时,比如他们按下按钮。)

根据要求,以下是我用来执行此操作的一些代码: //加载HTML和CSS。         $( “头”)。追加(             '');         $( “身体”)追加( '')。         $( “#负载按钮”)除去();

    $("#game").append(
        "<!-- Generated Swatch-->\n" +
        "<div id='generatedSwatch' class ='ui-widget-content ui-corner-all'></div> </br>\n" +
        "<!-- Score -->\n" +
        "<p id='score'>Score: 0</p>\n" +
        "<!-- Sliders -->\n" +
        "<div class='slider-row'>\n" +
        "    <div id='red'></div>\n" +
        "    <input type='text' id='rval' class='input-box'></input> </br>\n" +
        "</div>\n" +
        "<div class='slider-row'>\n" +
        "    <div id='green'></div>\n" +
        "    <input type='text' id='gval' class='input-box'></input> </br>\n" +
        "</div>\n" +
        "<div class='slider-row'>\n" +
        "    <div id='blue'></div>\n" +
        "    <input type='text' id='bval' class='input-box'></input> </br>\n" +
        "</div>\n" +
        "<!-- Got It Button -->\n" +
        "<button id='got-it' onclick='calculateScore()' class='button'>Got It</button>\n" +
        "<!-- Picked Swatch -->\n" +
        "<div id='pickedSwatch' class='ui-widget-content ui-corner-all'></div>\n" +
        "<!-- Percent Error -->\n" +
        "<p id='error'>Percent Error: </p>\n" +
        "<!-- Next Button -->\n" +
        "<button id='next' onclick='generateSwatch()' class='button'>Next</button>\n" +
        "<!-- Game Over Message -->\n" +
        "<p id='game-over'>Game Over</p>\n" +
        "<!-- Play Again -->\n" +
        "<button id='play-again' onclick='playAgain()' class='button'>Play Again</button>"
    );

    // Hide Elements.
    $("#pickedSwatch").hide();
    $("#error").hide();
    $("#next").hide();
    $("#game-over").hide();
    $("#play-again").hide();

    // Make Sliders Work
    $("#red,#green,#blue").slider(
    {
        orientation: "horizontal",
        range: "min",
        max: 255,
        value: 127,
        slide: refreshSwatch,
        change: refreshSwatch
    });
    $("#red").slider( "value", 255);
    $("#green").slider( "value", 140);
    $("#blue").slider("value", 60);

    // Code to move slider when box changed.
    $("#rval").change(function() 
    {
        $("#red").slider("value", $(this).val());
    });
    $("#gval").change(function() 
    {
        $("#green").slider("value", $(this).val());
    });
    $("#bval").change(function() 
    {
        $("#blue").slider("value", $(this).val());
    });

    // Generates the swatch for the first time and sets the turns.
    generateSwatch();

1 个答案:

答案 0 :(得分:0)

location.reload不需要在MOST的时候使用,jQuery可以在不刷新的情况下更新页面。这里注入的信息将丢失,因为jQuery在加载后操纵DOM并且除非隐含,否则不会维护状态。

您现在可以发布一些您正在使用的代码吗?