我迷路了。我使用以下代码(部分代码),但我只在IE中收到以下错误:
“错误:Object doesn't support this property or method
”。
<script type="text/javascript">
$.ajaxSetup ({
cache: false
});
$(function() {
$('.show-more').click( function() {
counter = $('#counter').text();
/* ... */
return false;
});
});
</script>
错误在线:
counter = $('#counter').text();