$(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