0

好的,我真的不确定我在这里做错了什么,但是没有创建 div,我不知道为什么?

$('#tree_01').draggable({appendTo: 'body', helper: 'clone', stop: function(event, ui) {
                var bg_pos_x = -5;
                var bg_pos_y = -1516;
                var width = 148;
                var height = 174;
                var pos_x = $(ui.helper).position().left;
                var pos_y = $(ui.helper).position().top;
                var id = 'tree_'+pos_x+'_'+pos_y;
                folliage(id,bg_pos_x,bg_pos_y,width,height,pos_x,pos_y);
            }});

拖放可拖动元素时,它应该运行代码并转到以下函数:

function folliage(id,bg_pos_x,bg_pos_y,width,height,pos_x,pos_y){
    var newdiv = document.createElement('div');
    newdiv.setAttribute('id', id);
    document.getElementById(id).style.left=pos_x+'px';
    document.getElementById(id).style.zIndex='5';
    document.getElementById(id).style.left=pos_y+'px';
    document.getElementById(id).style.width=width+'px';
    document.getElementById(id).style.height=height+'px';
    document.getElementById(id).style.background='url(../img/village.png)';
    document.getElementById(id).style.backgroundPosition=bg_pos_x+'px '+bg_pos_y+'px';

}

但是没有创建div????

4

3 回答 3

1

你从来没有真正将 div 添加到页面中。您需要使用类似append将 div 添加到 DOM 的方法。

于 2012-02-13T18:36:24.447 回答
1

<div>元素确实被创建了,但您永远不会将它添加到 DOM 树中,因此它永远不会在页面上可见。

您可以将新元素附加到页面正文中:

document.body.appendChild(newdiv);

folliage()顺便说一句,如果您将 jQuery 的使用扩展到其代码,您的函数会更短并且可能更具可读性。

另请注意,该行:

document.getElementById(id).style.left=pos_y+'px';

大概应该读:

document.getElementById(id).style.top = pos_y + 'px';
于 2012-02-13T18:36:49.250 回答
1

如果你使用 jQuery,你应该使用 jQuery 的元素创建方法而不是document.createElement. 但看起来您的问题是您没有将新创建的元素添加到文档中。尝试使用jQuery('<div id=' + id + '/>').appendTo('body');或类似的东西。

于 2012-02-13T18:37:20.637 回答