简体   繁体   中英

How to append variables to div with jquery?

How to append variables to div with jquery? There is my codes below. But I want to show div tags in append. For example; .append("" + p + "")

    var image = item.image;
    var label = item.label;
    var price = item.price;
    var vendor = item.vendor;                           

    <div class="image">
        <div>image</div>
        <div class="labelPrice">
            <div>label</div>
            <div>price</div>                                        
        </div>
        <div class="vendor">vendor</div>
    </div>

put id's on your divs and set the html with:

$('#yourLabelId').html(label);
// etc

not sure if this is what you're asking

$(".labelPrice").append(item.price);

This would add it just after the "price" div.

This is the syntax for appending items to an element in JQuery:

$(element).append([HTML Code]);

In this case you want to append certain variables to elements in your document.
You may be looking for syntax such as this:

$("#element_id").append([variable]);

Eg:

$("#label").append(item.label);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM