gpt4 book ai didi

javascript - jquery 获取 iframe 中元素的 offset()

转载 作者:行者123 更新时间:2023-12-03 11:33:49 25 4
gpt4 key购买 nike

我需要获取埋藏在 div 的 iframe 深处的提交按钮的偏移量信息。我想在加载 iframe 后将另一个元素放置在提交按钮旁边。 iframe 是从与包含页面相同的源加载的。

<div id="editBox">
<iframe id="ifr" src="mysource">
<html>
<head></head>
<body>
<form id="dataForm" enctype="" method="POST" action="">
<div>
<table> some form elements </table>
<button id="submitButton" onclick="" type="submit">Save to file</button>

我已经尝试过

$('#editBox').contents().find('#submitButton').offset();

$('#ifr').contents().find('#submitButton').offset()

但两者都返回未定义。

我还将 .contents 语句包装在 setTimeout 中,以确定问题是否是我在加载 iframe 之前进行检查。 (如果这有效,我会添加一个加载的事件处理程序),但没有变化,结果仍然未定义。

如何获取我需要的位置信息?

最佳答案

将代码包装在 iframe 的 load() 函数中。这就像文档就绪函数或窗口加载函数一样工作:

$("#ifr").on("load", function(){
var offset = $(this).contents().find('#submitButton').offset();
});

关于javascript - jquery 获取 iframe 中元素的 offset(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26619591/

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