Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用提供以下数据/值对象的 API:
Object {left: "704.4026794075746px", top: "171.54992155622406px"}
我需要能够获取左侧和顶部坐标以用于 jquery 的 css 方法。
我会将此对象转换为字符串然后解析字符串吗?我将如何在 jquery 的 css 或 animate 方法中使用对象内的数据?
抱歉没有上下文,但我不确定从哪里开始。
您只需将该对象传递给 jQuery 的.css函数。
.css
$('selector').css(cssObject);
如果对象位于名为 的变量中someObject,则可以按以下方式访问属性:
someObject
someObject.left
和
someObject.top
您可以致电我们css():
css()
$('selector').css("left", someObject.left);
或者,您可以像 Neal 在他的回答中显示的那样传递整个对象。