0
在asp.net中,我嘗試使用asp.net按鈕控件對div進行摺疊效果,但它不起作用。當我把html控件的效果工作正常時,而不是asp.net按鈕。任何機構可以幫助我爲什麼它不工作。JQuery的摺疊效果不適用於asp.net控件?
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$("#hide").click(function(){
$(".target").hide("fold",
{horizFirst: true }, 2000);
});
$("#show").click(function(){
$(".target").show("fold",
{horizFirst: true}, 2000);
});
});
</script>
the code for buttons goes here
<asp:Button ID ="show" runat ="server" Text ="Show" />
<asp:Button ID ="hide" runat ="server" Text ="hide" />
HTML控件,如果他們不是靜態
<input type ="button" id ="show" value ="Show" runat ="server" title ="Show" />
<input type ="button" id ="hide" runat ="server" title ="Hide" value ="Hide" />
它無法正常工作 – Ssasidhar
將警報置於事件中並檢查它們是否被解僱? – Adil
是的,我會檢查並通知你 – Ssasidhar