-2

我有一个按钮的 2 个 jquery .click 函数。函数应该一个接一个地触发。第二个功能没有触发。

<asp:Button ID="Button1" runat="server" Text="Save" Width="70px" />
// this function is fired 
$(document).ready(function () {
    $("#<%=Button1.ClientID%>).click(function () {
        //some code here
        var con = confirm("message");
        if (con) return true;
        else return false;
    });
});

// in another <script>
// this function is not getting fired
$(document).ready(function () {
        $("#<%=Button1.ClientID%>").click(function () {
                var con1 = confirm("message");
                if (con1) {
                    return true;
                } else {
                    return false;
                }
            }
        });
});

两个函数怎么能一个接一个地触发??或者我如何在一个函数中编写两个逻辑?

4

2 回答 2

1

尝试这个,

<script>
    var clientId=<%=Button1.ClientID%>;
    $(document).ready(function () {
        $("#"+clientId).click(function () {
          var con1 = confirm("message");
          return con1;
        });
    });
</script>
于 2013-08-22T16:24:38.810 回答
0

问题不在于您的函数没有被一个接一个地调用。事实上,如果你{}正确使用了大括号,它们就会被调用。请参阅下面的代码(最值得注意的是 js 部分):

HTML:

<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <Button ID="Button1" runat="server" Text="Save" Width="70px" >CLICK</Button>
</body>
</html>

JS:

$(function () {
    $("#Button1").click(function () {
        alert("1");
        var con = "message";
        if (con) return true;
        else return false;
    });
});


// this function is now getting fired
$(function () {
        $("#Button1").click(function () {
                alert("2");
                var con1 = "message";
                if (con1) return true;
                 else return false;
            });

});

请参阅此处的工作示例:http: //jsbin.com/IkIx/1/edit。像往常一样记住run with js

于 2013-08-22T16:41:29.397 回答