0

这是我想将图像与文本一起附加的代码

代码:

 $(".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;
        });
4

1 回答 1

0

将内容放在一个中怎么样,li因为您要附加到一个ul

$('.ChatText', $(this).parent()).find('ul').append('<li>'+userphoto + strChatText+'</li>');
于 2013-04-28T03:33:18.317 回答