我使用這個代碼,以我的DIV從右上(button_panel)按鈕,單擊幻燈片,一切工作正常,但是當我點擊DIV面板中的任何按鈕面板追溯到它的原始位置。它不應該發生,因爲click事件僅用於button_panel。任何想法爲什麼?滑動格板可追溯到上點擊DIV面板按鈕內
var sipPos = 0;
$(document).ready(function() {
$("#button_panel").click(function (e) {
e.preventDefault();
$("#panel").animate({ right: sipPos }, 300, 'linear', function() {
if (sipPos == 0) { sipPos = -150; }
else { sipPos = 0; }
});
});
});
<div id="panel" style=" border-style: solid; border-color: #008000; background-color:#D5FFD5; width:150px; height:400px; right:-150px; top:142px; position:absolute" align="center" >
<asp:ImageButton ID="button_panel" runat="server" style=" background-image: url('images/ProgressBar1.jpg'); width:80px; height:30px; left:-83px; margin-top:-12px; position:absolute; top:0px" Font-Bold="True" ImageUrl="~/images/green_left_arrow_104.jpg" />
<asp:Label ID="Label6" runat="server" style="margin-top:5px" Text="Timer" /><br />
<asp:Button ID="Button1" runat="server" style="margin-top:5px" Text="AFK!" /><br />
<asp:Button ID="Button2" runat="server" style="margin-top:5px" Text="REVIEW" /><br />
</div>
你可以發佈HTML片段也好嗎? – JonVD 2012-04-09 22:59:30