我有以下 HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
<script language='javascript'>
window.onload = function () {
alert($('#object1').height());
};
</script>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
</head>
<body>
<object id="object1" height="205" width="246">
<img id="Img1" height="205" width="246" src="../images/google_ad_example.jpg" />
</object>
</body>
</html>
使用jQuery:
alert($('#object1').height());
我19岁回来了!而不是 205 为什么?
谢谢。