为放置区中的选择创建唯一 ID
create unique IDs for selects in drop zone
我意识到这个问题与其他问题相似 posted,但我希望有人能帮助我解决这个问题:
我在使用 JQuery 拖放的可放置项中有一个 select
元素,拖动时会克隆该元素。该元素有一个 ID select
,但我需要 ID 是唯一的,这样我就可以访问放置区中每个框的不同 selected 选项。
在拖放区域下方,您会看到 select 框 ID,每当拖动新块时,我想要的输出是 select_1
、select_2
、select_3
等
现在,左侧有一个原始的 select 盒子,id 为 "select",我想为拖放区中的 select 盒子动态创建 ID。
我想知道为放置区内的每个 select 框分配唯一 ID 的最佳方法是什么?
这样我最终可以提取 selected 值(两个、三个、两个、三个,如上图所示)
期望的输出
select_1 TWO
select_2 THREE
select_3 TWO
select_4 THREE
$(document).ready(function() {
var dragOpts = {
helper: 'clone',
zIndex: 10
},
dropOpts = {
tolerance: 'fit',
drop: function(e, ui) {
if (ui.draggable.hasClass('div-source')) {
var cloneDiv = ui.draggable.clone(),
cloneDragOpts = {
containment: 'parent'
};
cloneDiv.css({
position: 'absolute',
top: ui.offset.top - $(this).offset().top,
left: ui.offset.left - $(this).offset().left
}).draggable(cloneDragOpts);
$(this).append(cloneDiv);
}
}
};
$('#source div').each(function(index) {
$(this).draggable(dragOpts);
});
$('#target').droppable(dropOpts);
});
/*
Experimenting with printing the new select IDs
Once dragged into the drop zone
*/
function drop(event) {
$("#target select").attr("id", (index, oldId) => oldId + "_" + (index + 1))
var IDs = $("#target select[id]")
.map(function() {
return this.id;
})
.get();
document.getElementById("inside_drop_zone").innerHTML = IDs.join(", ")
}
#source {
width: 150px;
height: 100px;
overflow: auto;
float: left;
border: 2px solid #696969;
background: #d3d3d3;
}
#target {
width: 500px;
height: 100px;
border: 2px solid #000;
margin-left: 10px;
float: left;
border: 2px solid #696969;
background: #d3d3d3;
position: relative;
z-index: 1;
}
#source div,
#target div {
display: block;
padding: 10px;
margin: 20px;
font-weight: bold;
font-family: monospace;
background-color: white;
text-align: center;
max-width: 70px;
border: 5px solid black;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.js"></script>
</script>
<div id="source">
<div id="div1" class="div-source">
<select id="selection">
<option>ONE</option>
<option>TWO</option>
<option>THREE</option>
</select>
</div>
</div>
<div id="target" ondrop="drop(event)">
</div>
<div id="inside_drop_zone"></div>
我意识到这个 post 与其他人有重叠,但我很好奇我是否正在以最好的方式解决这个问题,以及是否有更好的建议来创建动态 select 框。
非常感谢!
如果您确实需要它们具有唯一 ID,请完全放弃默认 ID,然后通过执行以下操作添加它们:
let sels = $('#target').children('select');
for (let x = 0; x < sels.length; x++) {
$(sels[x]).attr('id', 'select_' + x);
}
但是,如果您重新运行此代码,这些 ID 不一定一致。
我意识到这个问题与其他问题相似 posted,但我希望有人能帮助我解决这个问题:
我在使用 JQuery 拖放的可放置项中有一个 select
元素,拖动时会克隆该元素。该元素有一个 ID select
,但我需要 ID 是唯一的,这样我就可以访问放置区中每个框的不同 selected 选项。
在拖放区域下方,您会看到 select 框 ID,每当拖动新块时,我想要的输出是 select_1
、select_2
、select_3
等
现在,左侧有一个原始的 select 盒子,id 为 "select",我想为拖放区中的 select 盒子动态创建 ID。
我想知道为放置区内的每个 select 框分配唯一 ID 的最佳方法是什么?
这样我最终可以提取 selected 值(两个、三个、两个、三个,如上图所示)
期望的输出
select_1 TWO
select_2 THREE
select_3 TWO
select_4 THREE
$(document).ready(function() {
var dragOpts = {
helper: 'clone',
zIndex: 10
},
dropOpts = {
tolerance: 'fit',
drop: function(e, ui) {
if (ui.draggable.hasClass('div-source')) {
var cloneDiv = ui.draggable.clone(),
cloneDragOpts = {
containment: 'parent'
};
cloneDiv.css({
position: 'absolute',
top: ui.offset.top - $(this).offset().top,
left: ui.offset.left - $(this).offset().left
}).draggable(cloneDragOpts);
$(this).append(cloneDiv);
}
}
};
$('#source div').each(function(index) {
$(this).draggable(dragOpts);
});
$('#target').droppable(dropOpts);
});
/*
Experimenting with printing the new select IDs
Once dragged into the drop zone
*/
function drop(event) {
$("#target select").attr("id", (index, oldId) => oldId + "_" + (index + 1))
var IDs = $("#target select[id]")
.map(function() {
return this.id;
})
.get();
document.getElementById("inside_drop_zone").innerHTML = IDs.join(", ")
}
#source {
width: 150px;
height: 100px;
overflow: auto;
float: left;
border: 2px solid #696969;
background: #d3d3d3;
}
#target {
width: 500px;
height: 100px;
border: 2px solid #000;
margin-left: 10px;
float: left;
border: 2px solid #696969;
background: #d3d3d3;
position: relative;
z-index: 1;
}
#source div,
#target div {
display: block;
padding: 10px;
margin: 20px;
font-weight: bold;
font-family: monospace;
background-color: white;
text-align: center;
max-width: 70px;
border: 5px solid black;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.js"></script>
</script>
<div id="source">
<div id="div1" class="div-source">
<select id="selection">
<option>ONE</option>
<option>TWO</option>
<option>THREE</option>
</select>
</div>
</div>
<div id="target" ondrop="drop(event)">
</div>
<div id="inside_drop_zone"></div>
我意识到这个 post 与其他人有重叠,但我很好奇我是否正在以最好的方式解决这个问题,以及是否有更好的建议来创建动态 select 框。
非常感谢!
如果您确实需要它们具有唯一 ID,请完全放弃默认 ID,然后通过执行以下操作添加它们:
let sels = $('#target').children('select');
for (let x = 0; x < sels.length; x++) {
$(sels[x]).attr('id', 'select_' + x);
}
但是,如果您重新运行此代码,这些 ID 不一定一致。