I added it dynamically using append, but the content cannot be bound
$("#chat").append("<p class='eve_chat clearfloat'><p style='width:calc(98% - 50px);' class='clearfloat mb10'><img src='../../img/goods/3.jpg' class='chat_face left'><p class='chat_pop_left'><p class='chat_content left'><p>{{messages.messagetxt}}</p></p></p></p></p>")
Is there any solution?
Because your Html is asynchronous, you need to use the $compile service to compile manually
Remember to dependency injection $compile
Use
Come and bind~~