gpt4 book ai didi

javascript - 为什么我收到错误 : Uncaught TypeError: Cannot read property 'left' of undefined

转载 作者:行者123 更新时间:2023-11-28 15:42:56 26 4
gpt4 key购买 nike

HTML:

<div id="opening_0" style="background-color: #bfbfbf; position: absolute; left: 45px; top: 45px; height: 202.5px; width: 157.5px; overflow: hidden; z-index: 4;" ondrop="drop(event, this)" ondragover="allowDrop(event)" onclick="photos_add_selected_fid(this);">&nbsp;</div>

Javascript:

canvas.style.left = $("#opening_0").style.left - img.width + "px"; 
canvas.style.top = $("#opening_0").style.top - img.height + "px";

为什么我会收到此错误?

最佳答案

使用 jQuery 的 .css() 函数,因为这基本上就是您使用 jQuery 的原因:

canvas.style.left = parseInt($("#opening_0").css('left')) - img.width + "px"; 

关于javascript - 为什么我收到错误 : Uncaught TypeError: Cannot read property 'left' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23273328/

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