使用jquery从变量添加html元素?

发布于 2024-12-28 07:58:54 字数 1854 浏览 0 评论 0原文

我正在尝试将元素添加到特定的div,但不使用clone(),因为每次添加时我都需要原始元素的新鲜副本,主要是因为元素是可拖动的并且它们的值正在被用户更改?所以我的 html 是变量,我需要获取这些元素并在单击时将它们添加到另一个 elem 中。 ?

$(document).ready(function (e) {

var $gElem = $(
    '<div class="distributionWrapper" id="element_0">' +
        '<div class="cbox cboxQuarterWidth">'  +         
            '<select id="combobox100">'+
                '<option>1</option>'+
                '<option>2</option>'+
            '</select>'+
        '</div>'+
        '<div class="help"><a href="javascript:;"></a></div>'+
        '<div class="cbox cboxEighthWidth"><span>'+
            '<select id="combobox200" name="PeriodId">'+
                '<option>1</option>'+
                '<option>2</option>'+
            '</select>'+
        '</span></div>'+
        '<div class="clear" id="clearDistribution"><a href="javascript:;"></a></div>'+
        '<div class="add" id="addDistribution"><a href="javascript:;"></a></div>'+
    '</div>'
);

    $('.mainSearch').html($gElem); // initial load of element
    $("#combobox100").combobox();
    $("#combobox200").combobox();

var counter = 1;
$('.add').live('click', function () {
    if ($('.distributionWrapper').length === 6) return;
    //var el = $('.distributionWrapper:first').clone().attr('id', 'element_' + ++counter).appendTo('.mainSearch');
    $('.mainSearch').add($gElem).attr('id', 'element_' + ++counter);
     // here on click add gElem to .mainSearch and set atribute to .distributionWrapper

});

$('.clear').live('click', function () {
    if ($('.distributionWrapper').length === 1) return;
    $(this).parents('.distributionWrapper').remove();
});

});

有什么想法吗?

I am trying to add elements to specific div, but not using clone(), because i need fresh copy of original elements on every add, mainly because elements are draggable and their values are being change by user? So i have my html in variable, i need to take this elements and add them on click to another elem. ?

$(document).ready(function (e) {

var $gElem = $(
    '<div class="distributionWrapper" id="element_0">' +
        '<div class="cbox cboxQuarterWidth">'  +         
            '<select id="combobox100">'+
                '<option>1</option>'+
                '<option>2</option>'+
            '</select>'+
        '</div>'+
        '<div class="help"><a href="javascript:;"></a></div>'+
        '<div class="cbox cboxEighthWidth"><span>'+
            '<select id="combobox200" name="PeriodId">'+
                '<option>1</option>'+
                '<option>2</option>'+
            '</select>'+
        '</span></div>'+
        '<div class="clear" id="clearDistribution"><a href="javascript:;"></a></div>'+
        '<div class="add" id="addDistribution"><a href="javascript:;"></a></div>'+
    '</div>'
);

    $('.mainSearch').html($gElem); // initial load of element
    $("#combobox100").combobox();
    $("#combobox200").combobox();

var counter = 1;
$('.add').live('click', function () {
    if ($('.distributionWrapper').length === 6) return;
    //var el = $('.distributionWrapper:first').clone().attr('id', 'element_' + ++counter).appendTo('.mainSearch');
    $('.mainSearch').add($gElem).attr('id', 'element_' + ++counter);
     // here on click add gElem to .mainSearch and set atribute to .distributionWrapper

});

$('.clear').live('click', function () {
    if ($('.distributionWrapper').length === 1) return;
    $(this).parents('.distributionWrapper').remove();
});

});

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

满意归宿 2025-01-04 07:58:54

试试这个

$('.mainSearch').append($gElem);
$('.mainSearch').children('.distributionWrapper:last').attr('id', 'element_' + ++counter);

try this

$('.mainSearch').append($gElem);
$('.mainSearch').children('.distributionWrapper:last').attr('id', 'element_' + ++counter);
笑饮青盏花 2025-01-04 07:58:54

将 html 作为字符串存储在 JavaScript 变量中,并在每次需要该字符串时创建一个 jQuery 元素。

var elemHtml = 
'<div class="distributionWrapper" id="element_0">' +
    '<div class="cbox cboxQuarterWidth">'  +         
        '<select id="combobox100">'+
            '<option>1</option>'+
            '<option>2</option>'+
        '</select>'+
    '</div>'+
    '<div class="help"><a href="javascript:;"></a></div>'+
    '<div class="cbox cboxEighthWidth"><span>'+
        '<select id="combobox200" name="PeriodId">'+
            '<option>1</option>'+
            '<option>2</option>'+
        '</select>'+
    '</span></div>'+
    '<div class="clear" id="clearDistribution"><a href="javascript:;"></a></div>'+
    '<div class="add" id="addDistribution"><a href="javascript:;"></a></div>'+
'</div>'

$(function(){
    //your initial element
    var $elem1 = $(elemHtml);
}

function someHandler(){
    //you can create fresh new elements anywhere without cloning
    var $elem2 = $(elemHtml);
}

需要删除重复的 ID。但这超出了您的问题范围。

Store the html as a string in a javascript variable and create a jQuery element every time you need one from that string.

var elemHtml = 
'<div class="distributionWrapper" id="element_0">' +
    '<div class="cbox cboxQuarterWidth">'  +         
        '<select id="combobox100">'+
            '<option>1</option>'+
            '<option>2</option>'+
        '</select>'+
    '</div>'+
    '<div class="help"><a href="javascript:;"></a></div>'+
    '<div class="cbox cboxEighthWidth"><span>'+
        '<select id="combobox200" name="PeriodId">'+
            '<option>1</option>'+
            '<option>2</option>'+
        '</select>'+
    '</span></div>'+
    '<div class="clear" id="clearDistribution"><a href="javascript:;"></a></div>'+
    '<div class="add" id="addDistribution"><a href="javascript:;"></a></div>'+
'</div>'

$(function(){
    //your initial element
    var $elem1 = $(elemHtml);
}

function someHandler(){
    //you can create fresh new elements anywhere without cloning
    var $elem2 = $(elemHtml);
}

The duplicate IDs need to be removed. But that's outside the scope of your question.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文