使用.append()将 textarea 的值附加到 div后, JQuery 的.slideUp()不起作用。HTML:
<html>
<body>
<div id="cont">
<textarea id="txt"></textarea>
<button onclick="click()">Click</button>
</div>
</body>
</html>
JavaScript:
function click(){
var txt = $('#txt').val();
var html = document.createElement('div');
$(html).hide().html(txt);
$('#cont').append(html);
$(html).slideUp(500);
}
我不知道问题出在哪里,因为当我使用.show()而不是.slideUp()时,它工作正常。