1

我确信这是一个简单的情况,可能有些普遍,但我被卡住了,似乎无法弄清楚。

我正在为复选框使用 jQuery UI 按钮。我想要它,以便如果用户单击一个,jquery 将对页面底部的相应 div 进行更改。最终,我打算让它使用 .load 用另一个页面的内容填充 div,但现在,我发现只是改变了背景颜色。

下面是我试图开始工作的代码。我对 jQuery 不是很好,我可能会犯一些简单的错误。

感谢您提供的任何帮助。

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <title>jQuery UI Button - Checkboxes</title>
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
    <link rel="stylesheet" href="/resources/demos/style.css" />
    <script>
        $(document).ready(function() {
        $(function() {
            $( "#check" ).button();
            $( "#format" ).buttonset();
        });
    });
    $('input:checkbox').change(function(){
        if($(this).is(':checked')){
            alert('checked');
            $("#first").css("background-color","yellow");
        } else {
            alert('un-checked');
            $("#first").css("background-color","red");
        }
    });
</script>
<style>
#format { margin-top: 2em; }
</style>

<div id="format">
    <input type="checkbox" id="check1" /><label for="check1">1</label>
    <input type="checkbox" id="check2" /><label for="check2">2</label>
    <input type="checkbox" id="check3" /><label for="check3">3</label>
</div>
<!-- The following divs will end up being populated via an ajax call based on checkbox selections -->
<!-- Ultimately, checking a given checkbox should toggle the corresponding div -->
<div id="first">
    &nbsp;
</div>
<div id="second">
    &nbsp;
</div>
<div id="third">
    &nbsp;
</div>

4

1 回答 1

0

更改您的 JS,使 .change() 函数位于文档就绪部分内。否则,它是不活动的。

 $(document).ready(function() {
        $(function() {
            $( "#check" ).button();
            $( "#format" ).buttonset();
        });

    $('input:checkbox').change(function(){
        if($(this).is(':checked')){
            alert('checked');
            $("#first").css("background-color","yellow");
        } else {
            alert('un-checked');
            $("#first").css("background-color","red");
        }
    });
});
于 2013-08-09T18:31:36.380 回答