在 asp.net 中,我正在尝试使用 asp.net 按钮控件对 div 进行折叠效果,但它不起作用。而不是 asp.net 按钮,当我把 html 控件效果工作正常。任何机构都可以帮助我为什么它不起作用。
<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" />