我正在尝试根据宽度动态更改高度,但它没有响应。我有这个网站的javascript:
我的代码是:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
#OB{
background:#C60;
width:50%;
overflow: hidden;
}
</style>
</head>
<body>
<div id="OB">OrangeBlock</div>
<script language="javascript" type="text/javascript">
script.src = 'http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js';
var cw = $('#OB').width();
$('#OB').css({
'height': cw + '%'});
</script>
</body>
</html>