如何从一个html页面获取单选按钮的价值?

时间:2014-09-02 19:01:27

标签: javascript jquery html jquery-mobile web-applications

我尝试获取位于第一个html页面的底部粘贴的html代码的值。我有另一个html页面,应该使用按钮" onclick"生成。更确切地说,代码应该在下一页中创建按钮。

案例1:选择了radio-choice-1 - 它应该创建4个按钮。

案例2:选择了radio-choice-2 - 它应该创建4个或9个按钮。

案例3:选择了radio-choice-3 - 它应该创建9个或16个按钮。

案例4:选择了radio-choice-4 - 它应该创建16个按钮。

我不知道如何获取所选单选按钮的值,然后在另一页上生成按钮。

我实际上有一些脚本(game.js):

$(document).ready(function(){
    $('#radio-button-value').click(function(){
        $("input[name='radio-button-gruppe']:checked".val());
    });
});

第一个html页面

     <html>
    <head>
        <meta charset="utf-8" />
        <title>newgame</title>

        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" />
    <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>

    <!-- Einstellungen zur Defintion als WebApp -->
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

    <script src="game.js"></script> 
    </head>
    <body>


    <div data-role="main" class="ui-content">
    <form>
    <fieldset data-role="controlgroup">
  <legend>Choose a mode:</legend>
  <input type="radio" name="radio-choice" id="radio-choice-1" value="choice-1" checked="checked">
  <label for="radio-choice-1">easy</label>

  <input type="radio" name="radio-choice" id="radio-choice-2" value="choice-2">
  <label for="radio-choice-2">medium</label>

  <input type="radio" name="radio-choice" id="radio-choice-3" value="choice-3">
  <label for="radio-choice-3">difficult</label>

  <input type="radio" name="radio-choice" id="radio-choice-4" value="choice-4">
  <label for="radio-choice-4">hard</label>
</fieldset>
<input type="button" id="radio-button-value" name="game" value="create game" class="button" data-theme="b"/>
</form>





  </div>

  <div data-role="footer">

  </div>
</div> 
    </body>
</html>

1 个答案:

答案 0 :(得分:0)

我不确定您正在寻找什么样的解决方案。但是如果你不想使用更深入根源的东西,比如php中的$ _SESSION变量,那么你可能正在寻找类似cookie的东西。 Here是关于Cookie的绝佳网页。

另请查看来自htmlgoodies.com的this教程,了解使用javascript传递的变量以获取其他一些想法。

如果你对饼干没问题,你几乎可以使用你已经拥有的东西,只需稍微清理一下jquery。

$(document).ready(function(){
    $('#radio-button-value').click(function(){
        var difficulty = $("input[name='radio-choice']:checked").val();
        document.cookie = "gameDifficulty=" + difficulty + ";path=/";
    });
});

请参阅fiddle