0

如何设置div使用 JavaScript 的宽度和高度?

这是我的代码

<%@page import="org.json.JSONObject"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>View JSON</title>
<script type="text/javascript">
var rect1='{"minX": 0.0,"minY": 0.0,"maxX": 2460.0,"maxY": 3008.0}';
var rectangle = JSON.parse(rect1);
var maxx=rectangle.maxX;
var maxy=rectangle.maxY;

***What should i do here?***

</script>
</head>
<body>
<h5>JSON View</h5>
<div id="set">
</div>
</body>
</html>

我想将 div 的宽度maxx和高度设置为maxy值。我还想将其边框设置为,1px以便我可以查看它是否正常工作。

谢谢

4

2 回答 2

6

你需要使用

document.getElementById('set').style.width = maxX + "px";

document.getElementById('set').style.height = maxY + "px";

此外,您可能需要确保在脚本运行之前加载文档,否则可能尚未创建 set div。您在 window.onload 中以箔纸的形式执行此操作:

window.onload = function ()
{
  Javascript code goes here
} 
于 2013-03-19T10:09:57.087 回答
3

你会利用元素的style

document.getElementById('set').style.width = maxx + "px";
document.getElementById('set').style.height = maxy + "px";
document.getElementById('set').style.border = "1px solid #000";

JSFiddle 示例

作为一个固定值,在这种情况下,仅使用 CSS 可能会更好地控制边框。

div#set {
    border:1px solid #000;
}
于 2013-03-19T10:03:25.787 回答