我嘗試通過點擊按鈕來隱藏DIV,但它隱藏它的第二個和返回股利(看起來清爽的頁面)。這裏是我的html代碼:如何將隱藏事件添加到webform中的按鈕?
<div id="page">
<p>First Paragraph</p>
<p>Second Paragraph</p>
<p>Yet one more Paragraph</p>
<asp:Button ID="Button1" runat="server" Text="Button" />
</div>
這裏是我的jQuery代碼:
$(document).ready(function() {
$("#Button1").click(function() {
$("#page").hide();
});
});
謝謝你,馬特我會改變它。 – user3669167