我正在尝试按照this来回答如何为图像着色,但是当我这样做时,$("#myselector").height();
一直被返回为0.我做错了什么?继承我的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Test</title>
<link rel="stylesheet" href="style.css">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<script src="http://codeorigin.jquery.com/jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function() {
overlay = $("#overlay");
img = $("#myimg");
overlay.width($("#myimg").width());
alert($("#myimg").height());
overlay.height("100");
overlay.css("top", img.offset().top + "px");
overlay.css("left", img.offset().left + "px");
});
</script>
<body id="home">
<div id="overlay" class="overlay"></div>
<img id="myimg" src="building.png" />
</body>
</html>
答案 0 :(得分:5)
我最好的猜测是图片尚未加载。
您的脚本运行onready
。如果将其更改为onload
,您可能会获得更好的结果。
更改
$(document).ready(function() {
到
$(window).load(function() {
答案 1 :(得分:4)
使用图片'load
事件:
$(document).ready(function() {
overlay = $("#overlay");
img = $("#myimg");
img.load( function(){
overlay.width($("#myimg").width());
alert($("#myimg").height());
overlay.height("100");
overlay.css("top", img.offset().top + "px");
overlay.css("left", img.offset().left + "px");
});
});
答案 2 :(得分:1)
替换:
$(document).ready(function() {
在:
$(window).load(function() {