gpt4 book ai didi

javascript - 为什么我不能在 JavaScript 函数中访问这个 CSS 属性?

转载 作者:行者123 更新时间:2023-11-30 13:33:56 24 4
gpt4 key购买 nike

当我从样式表中设置属性时,我无法在 JavaScript 函数中访问一个图像元素的 left 属性,但是当我在图像标记上使用内联样式时,它工作正常。

这是我的代码:

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
<script type="text/javascript">
function moveObjRight(obj) {
var a = document.getElementById(obj);
alert(a.style.left)
}
</script>
<style type="text/css">
#AS
{
top: 141px;
left: 118px;
position: absolute;
height: 25px;
width: 25px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<img alt="asd" src="pic 3-4.jpg" id="AS" />
<input type="button" value="Button" onclick="javascript:moveObjRight('AS');" />
</div>
</form>
</body>
</html>

最佳答案

您需要使用计算样式属性。这可以通过具有简单功能的跨浏览器方法来实现。看看quirks mode用于解释以下功能。

function getStyle(el,styleProp) {
var x = document.getElementById(el);
if (x.currentStyle)
var y = x.currentStyle[styleProp];
else if (window.getComputedStyle)
var y = document.defaultView.getComputedStyle(x,null).getPropertyValue(styleProp);
return y;
}

关于javascript - 为什么我不能在 JavaScript 函数中访问这个 CSS 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5685848/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com