在jquery中声明静态变量

时间:2012-06-18 06:38:13

标签: jquery variables static

请指导我在以下程序中声明静态变量。 我想通过单击按钮增加静态变量lists.counter的值。 但它不起作用。

 <%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
    CodeBehind="Default.aspx.cs" Inherits="finalspecific2_list._Default" %>


   <asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
    <script src="Scripts/jquery-1.4.1-vsdoc.js" type="text/javascript"></script>
    <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
    <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>

<script type="text/javascript">

    $(document).ready(function lists() {

        var list = $('#myList li:gt(0)');


        list.hide();
        lists.counter = 0;
        var username = $("#<%= uname.ClientID %>").val();
        var pwd = $("#<%= pwd.ClientID %>").val();


        $("#<%= Login.ClientID %>").click(function () {


            lists.counter++;


            alert(lists.counter);
            lists.counter++;


        });




        $("#<%= Button1.ClientID %>").click(function () {

            {

                    alert(lists.counter);



                    }




                });
    });



  </script>

</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">




<asp:Button ID="Login" runat="server" Text="Login" />
<asp:Button ID="Button1" runat="server" Text="Login" />





</ul>





</asp:Content>
当点击任何按钮时,

lists.counter应该增加,并且应该随后点击增加。 请指导此事。

3 个答案:

答案 0 :(得分:5)

你可以在这里使用一个闭包:

$(document).ready(function() {
    // The actual counter is contained in the counter closure.
    // You can create new independent counters by simply assigning 
    // the function to a new variable
    function makeCounter() {
        var count = 0;
        return function() {
            count++;
            return count;
        };
    };

    // This variable contains a counter instance
    // The counter is shared among all calls regardless of the caller
    var counter = makeCounter();

    // The handler is bound to multiple buttons separated by commas
    $("#button, #another_button, #yet_another_button").click(function () {
       var i = counter();
       console.log("The counter now is at " + i);

       // Probably update your counter element
       // $("#counter").text(i);
    });
});​

您可以在this小提琴中找到代码。

如果您有兴趣,可以阅读有关闭包的更多信息here

更新: This fiddle使用共享同一个计数器的多个按钮。

答案 1 :(得分:0)

lists.Counter替换为this.Counter并检查其是否有效

或试试这个 -

<input id="button" type="button" value="button" />

var counter = 0;

$("#button").click(function () {
   console.log(counter++);
});

演示:http://jsfiddle.net/AxD7c/

答案 2 :(得分:0)

在JQuery中声明变量时,请不要在两者之间使用DOT,而是可以使用camel格式来区分两个单词,因此list.counter应为listCounter

更改了代码:

$(document).ready(function lists() {

    listsCounter = 0;

    $("#<%= Login.ClientID %>").click(function () {

        listsCounter++;

    });

});