$('ul li:not(:first):not(:last)').remove();
或者使用特定的ID:
$('#yourul li:not(:first):not(:last)').remove();
如果你有一个带有ul的jQuery对象:
$(yourul).find('li:not(:first):not(:last)').remove();