有没有办法通过ng-model
获取ng-attr-id
值?
我正在撰写评论/回复框,我想获得当前回复的价值。
这是我的HTML -
<div class="comments-list" ng-show="CommentsLoaded">
<ul>
<li ng-repeat="comment in comments">
<div>
{{comment.content}}
</div>
<div ng-click="showReply(comment.id)">
Reply
</div>
<div ng-class="hideReply" ng-attr-id="{{'reply-'+comment.id}}">
<textarea ng-model="replytxt" ng-attr-id="{{'replytxt-'comment.id}}"></textarea>
<div class="form-group">
<button type="button" ng-click="sendReply(comment.id)">
Publier
</button>
</div>
</div>
</li>
</ul>
</div>
这是angularjs -
$scope.sendReply = function(commentId){
var elm = document.getElementById('replytxt-'+commentId);
console.log(elm);
}
以上功能在控制台中显示:
<textarea ng-model="replytxt" ng-attr-id="{{'replytxt-'+comment.id}}" class="ng-pristine ng-valid ng-touched" id="replytxt-31"></textarea>
答案 0 :(得分:2)
您不需要通过其选择器检索元素值。点击后,在replytxt
函数内部传递sendReply
值。
ng-click="sendReply(comment.id, replytxt)"
$scope.sendReply = function(commentId, replytxt){
建议:您可以将replytxt
作为ng-model
独立的评论级别属性,而不是comment.replytxt
,这样您就不会{39} ; t需要注意将replytxt
值单独传递给服务器。
ng-click="sendReply(comment)"
<强>代码强>
$scope.sendReply = function(comment){
console.log(comment.id, comment.replytxt);
}