gpt4 book ai didi

javascript - 在 Firefox 中使 div 可拖动

转载 作者:行者123 更新时间:2023-11-30 18:19:36 25 4
gpt4 key购买 nike

<分区>

我试过代码 in this thread但它似乎对我不起作用。我使用的是 Firefox 15,它适用于 Chrome。

这是我的代码:

<!DOCTYPE html>
<head>
<title>A Simple Draggable Object</title>
</head>
<body>
<script>
window.onload=function() {
var dragItems = document.querySelectorAll('[draggable=true]');

for (var i = 0; i < dragItems.length; i++) {
addEvent(dragItems[i], 'dragstart', function (event) {
// store the ID of the element, and collect it on the drop later on
event.dataTransfer.setData('Text', this.id);
});
}

};
</script>

<h1>Test #1: A Simple Draggable Object</h1>
<div draggable="true">This text should be draggable.</div>
</body>
</html>

感谢任何帮助

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