点击下面给出的图片中的星星时,我会做以下事情,
$productCategories = ProductCategory::with('products', 'products.images')->findOrFail(1);
如何在第一个单元格中获取值,相应行的名称列或**
从DOM中的任何容器中获取文本
** 我知道jquery,任何人都可以建议类似于data属性或jquery对象的东西 table data
答案 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>