欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

IE8 兼容性問(wèn)題(屬性名區(qū)分大小寫(xiě))

 更新時(shí)間:2009年06月04日 02:21:38   作者:  
屬性名大小寫(xiě)問(wèn)題,如屬性window.screen.height
如果將其中的屬性height寫(xiě)成不是全部小寫(xiě)的時(shí)候,如寫(xiě)成 window.screen.Height或window.screen.heighT時(shí),在IE6、IE7下可以得到值(IE6、IE7不區(qū)分大小寫(xiě)),在IE8下為undefined(IE8區(qū)分大小寫(xiě)),所以發(fā)生問(wèn)題。
例:
復(fù)制代碼 代碼如下:

<html>
<body>
<input type="button" value="Test" onclick="showMessage()">
</body>
<script lang="javascript">
function showMessage(){
alert(window.screen.Height);
}
</script>
</html>

解決方法:不區(qū)分大小寫(xiě)直接替換所有html、js和jsp文件即可。
INS系統(tǒng)中已知需要替換的屬性列表:
window.screen.height (誤寫(xiě)為window.screen.Height)
window.screen.width (誤寫(xiě)為window.screen.Width)

相關(guān)文章

最新評(píng)論