我正在为我的网站使用jQuery以及twitter bootstrap。我正在使用滚动间谍,旋转木马和AJAX表单提交。我在三个浏览器中测试了这些。他们使用chrome和FF工作,但不在Internet Explorer中工作。
我对这些技术很陌生,所以我可能错过了一些对兼容性很重要的东西 以下是我正在使用的脚本。
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/parsley.js"></script>
<!-- script to make the navigation scroll -->
<script>
var $root = $('html, body');
$('#nav a').click(function() {
var href = $.attr(this, 'href');
$root.animate({
scrollTop: $(href).offset().top
}, 500, function () {
window.location.hash = href;
});
return false;
});
</script>
<script>
// AJAX submit
$("#emailForm").submit(function() {
var url = "email.php";
$.ajax({
type: "POST",
url: url,
data: $("#emailForm").serialize(),
success: function(data)
{
$('#emailForm')[0].reset();
$('#contactForm').prepend('<h1 class="text-success" id="messageSent">Message sent!</h1>');
$("#messageSent").fadeIn("slow");
window.location.href = '#contact';
}
});
return false; // avoid to execute the actual submit of the form.
});
</script>
<!-- script to make the carousel work -->
<script>
// carousel demo
$('#myCarousel').carousel();
</script>
有人可能会指出/解释我的方式错误
编辑:我正在使用IE 8来测试它。
答案 0 :(得分:2)
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
您使用的是2.0版的jQuery,它在IE 8中不起作用。您可以阅读此here。
我建议您使用与较低IE版本兼容的jQuery版本,例如1.9.1:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>