谁能告诉我为什么这个jQuery在IE8中不起作用?它在Chrome中运行良好,但在IE中无效。
$(document).ready (function() {
$('.first-p').hide();
$( "div.first" ).click(function() {
$(this).next().slideToggle(1000);
});
});
<div class="first">Toggle first</div>
<p class="first-p">First hidden paragraph.</p>
<div class="first">Toggle second</div>
<p class="first-p">Second hidden paragraph.</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
答案 0 :(得分:4)
根据Jquery页面状态
如果您需要支持Internet Explorer 6-8,Opera 12.1x或Safari 5.1+等旧版浏览器,请使用jQuery 1.12。
您使用的是3.2.1版本