gpt4 book ai didi

jQuery ui 可拖放到 iframe 中

转载 作者:行者123 更新时间:2023-12-01 00:31:56 24 4
gpt4 key购买 nike

我正在尝试使用 jQuery ui 可拖放,如果我在同一页面上尝试,它工作正常。但是,当我尝试拖动一个元素并将其放入 iframe 中定义的可放置区域时,它无法完美工作。它可以工作,但不能在 iframe 中的整个可放置区域上工作,并且也可以在框架之外放置。

这就是我所做的

我的主页:Home.html

<!DOCTYPE html>
<html><head>
<title>jQuery UI Draggable</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<link href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" rel="stylesheet">

<script type="text/javascript">
$(function () {
$("#FirstDiv").draggable({ revert: "invalid",iframeFix: true });
$("#SecondDiv").draggable({ revert: "invalid" });
$("#frame").load(function () {
var $this = $(this);
var contents = $this.contents();
contents.find('.DroppableDiv').droppable({
drop: function (event, ui) { alert('dropped'); }
});
});
});
</script>
</head>
<body style="cursor: auto;" >

<div class="demo">
<div id="mainDiv" style="background-color: #FAE6B6; height:200px">
<div id="FirstDiv" style=" border-style:solid; border-width:1px; font-size:medium; height:20px; width:300px">First Div</div>
<div id="SecondDiv" style=" border-style:solid; border-width:1px; font-size:medium; height:20px; width:300px">Second Div</div>
</div>
</div>
<iframe id="frame" src="test.html" style="width: 800px; height: 400px"></iframe>

</body></html>

这是我的 iframe 内容 test.html

<!DOCTYPE html>
<html>
<head>
<title>jQuery UI Draggable - inner html</title>
<style>
.DroppableDiv {
background-color:red;
height: 500px;
width: 500px;
}
</style>
</head>
<body style="cursor: auto;">
<div class="DroppableDiv">
</div>
</body>
</html>

最佳答案

你可以尝试这样的事情:

$('#draggables div', parent).draggable();

这里还有一些不同的答案:

https://web.archive.org/web/20170426075018/http://jqfaq.com/how-to-implement-drag-and-drop-between-iframes/

jQuery and iframes and weird positioning: is there a workaround?

祝你好运!

关于jQuery ui 可拖放到 iframe 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14826652/

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