如何在评论文本JQuery旁边添加图像

时间:2014-04-29 11:40:02

标签: javascript jquery html image

我希望能够按下按钮"提交"添加动态图像。像下图这样的东西。

Image

我自己研究过,但无法找到任何解决方案。任何形式的帮助都会有所帮助:)

Live Demo

HTML:

<textarea id ="comments" cols="30" rows="3"></textarea>
            <input type="submit" value="Submit" id="submit"/> 
            <div id="divComments"></div>

JQuery的:

function addComment(name1) {

        var container = $('#divComments');
        var inputs = container.find('label');
        var id = inputs.length + 1;

        var div = $('<div />', { class: 'CommentStyle' });

        $('<label />', {
            id: 'comment' + id,
            text: name1
        }).appendTo(div);

        div.appendTo(container);   

    }

    $('#submit').click(function () {
        addComment($('#comments').val());
        $('#comments').val("");
    });

1 个答案:

答案 0 :(得分:0)

检查DEMO

那应该做你的工作

var img = $('<img>').attr("src", 'http://ssl.gstatic.com/accounts/ui/logo_2x.png').appendTo($('#divComments'));