0
我試圖動畫列表項以同樣的方式asmselect做,但它似乎保持減去的高度,而不是加2px的減jQuery的動畫保持減去
<script type="text/javascript">
$(document).ready(function() {
$('#name').change(function(){
$('#name option:selected').each(function() {
/*$('.asmListItem').animate({
opacity: "show",
height: "show"
}, 100, "swing", function() {
$('.asmListItem').animate({
height: "+=2px"
}, 50, "swing", function() {
$('.asmListItem').animate({
height: "-=2px"
}, 25, "swing");
});
});*/
$('#select-to')
.append("<li class='asmListItem' value='"+$(this)
.val()+"'><span class='asmListItemLabel'>" + '<b>'+$('#subnam').val() + ' </b>' + $(this)
.text()+"</span><a href=# class='asmListItemRemove'>remove</a></li>");
$(this).remove();
});
});
$('.asmListItemRemove').live('click', function() {
$(this).closest('li').remove();
});
});
有什麼想法?
可以ü請告訴我們完整的代碼üR工作呢? – Avi 2012-02-21 14:19:54