HTML
<div commentId = {{commentData.id}} class="addReplyContainer" style="display: none" >
<textarea style="width:50%" class="addReplyTextarea form-control"></textarea>
</div>
组件
/**
* reply link is clicked
* @param event
*/
addReply(event, commentId);
addReply(event, commentId)
{
console.log(commentId);
jQuery('div[commentId='+commentId+']').show(); // Want to use CommentId here
}
我想在Angular 4.4中使用Jquery Library进行一些DOM操作。 但看起来我无法为我们想要使用角度变量的DOM元素分配新属性。
错误
ncaught错误:模板解析错误:无法绑定到'commentId',因为 它不是'div'的已知属性。 (”
还有其他方法可以解决这个问题吗?
非常感谢任何帮助。
谢谢!