注册 登录
编程论坛 jQuery论坛

jQuery v1.8.3为什么不能兼容ie9哪位大神了解

小青345 发布于 2017-09-25 11:08, 3034 次点击
<script>
$(function () {


$("a").click(function () {
console.log($(this).attr("href"));
var id = $(this).attr("href");
$("body,html").animate({"scrollTop":$(id).offset().top},1000);
})
})
</script>


2 回复
#2
外部三电铃2017-09-25 11:13
那就换个兼容的版本啊,哪里不兼容了
#3
klyz5052017-10-10 22:57
href的值是否“#”开头?如果不是$(id)要改为$('#'+id)
1