我有一个预定义的 div 和相应的 CSS,如下所示:
<div id="pin0" style="display: none" class="pin">
<div class="comment">
<div class="delete">
<a href="javascript:void(0);" onclick="deletePin(this);">
<img src="/Images/RE/cross.png" style="border: 1px groove" width="16px" height="16px" /></a>
</div>
<textarea style="border: 0px; resize: both;" rows="3" cols="35" placeholder="Comment"></textarea>
</div>
</div>
<img src="/Images/RE/03.png" />
.pin
{
position: absolute;
background-image: url('/Images/RE/ping.png');
width: 32px;
height: 16px;
z-index: 999;
}
.delete
{
position: relative;
top: 0px;
left: 0px;
background-color: transparent;
width: 300px;
text-align: right;
}
.comment
{
position: absolute;
top: 100%;
left: auto;
}
这将是结果:
请注意,这整个DIV
是一个隐藏元素,然后允许用户通过 JQuery 双击克隆它们,如下所示:
$("#clicks").dblclick(function (e) {
var offset_t = $(this).parent().offset().top - $(window).scrollTop();
var offset_l = $(this).parent().offset().left - $(window).scrollLeft();
var newX = Math.round((e.clientX - offset_l));
var newY = Math.round((e.clientY - offset_t));
var newDiv = $('#pin0').clone();
newDiv.attr('id', 'pin' + $("#clicks").children('.pin').length);
$(newDiv).css('top', newY - 25);
$(newDiv).css('left', newX - 10);
$(newDiv).css('display', 'block');
$(this).append(newDiv);
$(newDiv).draggable();
}
)
如您所见,我将 ID 设置为'pin' + $("#clicks").children('.pin').length
. 现在我想知道如何动态地操作这个特定的元素。我已经尝试了非常手动的方式,方法是硬编码如下 ID,但根本不起作用:
$("#pin1").focus(function (e) {
alert("hello!");
})