为什么这不起作用?
HTML
<a href="#" id="showMore">Before</a>
JS
$('#showMore').click(function() { $(this).toggle( function () { $(this).html('<a href="#">After</a>');},function () { $(this).html('<a href="#">Before</a>'); }); });