我有一个包含 pdf 对象和可拖动文本的 div:
<html>
<head>
<script>
function allowDrop(ev) {
ev.preventDefault();
}
function drop(ev) { alert("DROP"); }
</script>
</head>
<body>
<div id="div1" ondrop="drop(event)" ondragover="allowDrop(event)">
<object type="application/pdf" ondrop="drop(event)" ondragover="allowDrop(event)"
data="https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf"
width="80%"
height="80%">
</object>
</div>
<br>
<div draggable="true">
<p>Drag me around</p>
</div>
</body>
</html>
PDF 渲染得很好,但我无法将 PDF 对象放在上面,我可以将其放在 div 的其余部分中
对 html 对象标签的拖放有限制吗?有没有解决的办法 ?
慕标5832272
绝地无双
相关分类