无法在asp.net中附加图像和文本

时间:2013-04-28 03:28:45

标签: javascript jquery asp.net jquery-ui signalr

这是我想要将图像与文字一起追加的代码

代码:

 $(".ChatSend").click(function () {
            strChatText = $('.ChatText', $(this).parent()).val();
            var recievertext=  $('.ausername').html();
            if (strChatText != '') {
                var strGroupName = $(this).parent().attr('groupname');
                if (typeof strGroupName !== 'undefined' && strGroupName !== false)
                    chat.server.send($("#hdnUserName").val() + ' : ' + strChatText, $(this).parent().attr('groupname'));
//this code is not working
                    **var userphoto="<img  height=\"18px\" width=\"18px\" src=\"userimages/5.jpg\" />";
                $('.ChatText', $(this).parent()).find('ul').append(userphoto + strChatText);**
//end of this code is not working
                $('.ChatText', $(this).parent()).val('');
            }
            return false;
        });

1 个答案:

答案 0 :(得分:0)

如果您将内容添加到li,那么如何将内容添加到ul

$('.ChatText', $(this).parent()).find('ul').append('<li>'+userphoto + strChatText+'</li>');