$(document).ready(function () {
$("#hpn").toggle(function() {
$(this).slideDown(1000);
$("#strHref").html("收起");
}, function() {
$(this).slideUp(1000);
$("#strHref").html("更多选项+")
});
为什么这里text没有效果
$("#hpn").toggle(function() {
$(this).slideDown(1000);
$("#strHref").html("收起");
}, function() {
$(this).slideUp(1000);
$("#strHref").html("更多选项+")
});
为什么这里text没有效果
2016-07-21