你能告訴我如何限制內容寬度到屏幕邊界嗎?對於以下腳本,我總是獲得比屏幕(允許的空間)寬度寬2px的寬度。HR寬度100%問題
document.body.scrollWidth總是比2px的屏幕
<html>
<head>
<style>
* {margin: 0; padding: 0}
</style>
<script type="text/javascript">
function test(){
alert(document.body.scrollWidth);
alert(document.getElementById("hrtest").scrollWidth);
alert(document.getElementById("divtest").scrollWidth);
alert(screen.width);
}
</script>
</head>
<body onLoad="test()">
<div id="divtest">
<hr size="2" width="100%" id="hrtest" />
</div>
</body>
</html>
爲什麼在所有指定的寬度? – Oded 2012-03-12 19:43:48