从div中的div或任何容器中获取值

时间:2016-04-15 06:25:45

标签: jquery angularjs

点击下面给出的图片中的星星时,我会做以下事情,

$productCategories = ProductCategory::with('products', 'products.images')->findOrFail(1);

如何在第一个单元格中获取值,相应行的名称列或**

  

从DOM中的任何容器中获取文本

** 我知道jquery,任何人都可以建议类似于data属性或jquery对象的东西 table data

1 个答案:

答案 0 :(得分:1)

$scope.starLeft = function(event,commentsValue, name){
    if(commentsValue =='' || commentsValue === undefined){
        alert('please enter comments');
        return;
    }
  alert(name)
}
<td>{{x.name}}</td>
<td>
    <div ng-click="starHovered($event)" class='pointer fg-blue'>{{x.star}} </div>
    <div title='Click to add star' class='displayNone'><input type="text-box" placeholder="Enter comments" class='commentsValue' ng-model=commentsValue/><img  ng-click="starLeft($event,commentsValue, x.name)" class='pointer' src='images/add.png' height='30px'/></div>
</td>