嗨,我有这个按钮,它的按钮点击不起作用
<asp:Button ID="btnfirstnext" runat="server" Text="Next" class="next1 action-button" OnClick="btnfirstnext_Click" OnClientClick="return false;" />
在这里,我使用像
这样的JavaScript$(".next1").click(function () {
if (animating) return true;
animating = true;
current_fs = $(this).parent();
next_fs = $(this).parent().next();
//activate next step on progressbar using the index of next_fs
$("#progressbar li").eq($("fieldset").index(next_fs)).addClass("active");
//show the next fieldset
next_fs.show();
//hide the current fieldset with style
current_fs.animate({ opacity: 0 }, {
step: function (now, mx) {
//as the opacity of current_fs reduces to 0 - stored in "now"
//1. scale current_fs down to 80%
scale = 1 - (1 - now) * 0.2;
//2. bring next_fs from the right(50%)
left = (now * 50) + "%";
//3. increase opacity of next_fs to 1 as it moves in
opacity = 1 - now;
current_fs.css({ 'transform': 'scale(' + scale + ')' });
next_fs.css({ 'left': left, 'opacity': opacity });
},
duration: 800,
complete: function () {
current_fs.hide();
animating = false;
},
//this comes from the custom easing plugin
easing: 'easeInOutBack'
// $('btnfirstnext').trigger('click');
});
});
我希望在按钮clickevent上运行一些代码,如
protected void btnfirstnext_Click(object sender, EventArgs e)
{
lblmessage.text="Hello this button click working";
}
这里你可以看到上面这个细节,当我加载这个代码它只运行JavaScript而不是工作按钮点击事件。这个JavaScript是一个弹出窗口。请帮我解决这个问题。
答案 0 :(得分:2)
请删除aspx中的OnClientClick="return false;"
部分。我怀疑这是在阻止回发。
答案 1 :(得分:1)
您正在从false
返回OnClientClick
,如果您从OnClientClick
javascript事件处理程序返回false,那么您将无法收到回复信息,如果您总是需要回发,则可以返回true。否则你可以有条件地返回真或假。
仅使用jQuery click
事件处理程序并删除On OnClientClick
答案 2 :(得分:0)
试试这个:
$(document).ready(function(){
$(".next1").click(function () {
//Your Code here
});
});
并将其删除:OnClientClick="return false;"
答案 3 :(得分:0)
您需要删除OnClientClick="return false;"
中的asp:Button
。它阻止了你的回发。你的按钮需要看起来像这样:
<asp:Button ID="btnfirstnext" runat="server" Text="Next" class="next1 action-button" OnClick="btnfirstnext_Click" />
我只会使用click
事件处理程序来处理这个问题。我还要添加document ready
部分:
$(document).ready(function() {
$(".next1").click(function() {
// Add the rest of your code
});
});
我希望这会有所帮助。
答案 4 :(得分:0)
<asp:Button ID="btnfirstnext" runat="server" Text="Next" class="next1 action-button" OnClick="btnfirstnext_Click"; />
您必须删除OnClientClick =“return false;”。