这个(非常基本的)页面:
http ://www.marianotomatis.it/test.php 在Chrome和Firefox
上
正确呈现,但在IE9上它停止在这一行:
h=a.data(e.get(0),"mobileSlider").slider
脚本http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js 的消息“无法检索空或未定义引用的“滑块”属性”。
这是页面的完整代码:
<!DOCTYPE html>
<html>
<head><title>Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
</head>
<body>
<div id='A' name='A'>
<div data-role="rangeslider">
<label for="B">Range</label>
<input type="range" name="B" id="B" min="0" max="100">
<label for="C">Range</label>
<input type="range" name="C" id="C" min="0" max="100">
</div>
</div>
</body>
</html>
您看到问题的任何原因了吗?