所以,我是 AngularJS 的新手,我试图在单击另一个 div 内容后更改一个 div 内容(这个包含我想要放在第一个的内容的 div)。
HTML
<div ng-controller="dCtrl">
<ul ng-repeat="product in products">
<li change>
{{product.name}}
<div class="hide">{{product.description}}</div>
</li>
</ul>
</div>
<div id="test"></div>
Javascript
var app = angular.module("dt", []);
app.directive("change", function() {
return function(scope, element) {
element.bind("click", function() {
var message = element.children("div").text();
console.log("breakpoint");
angular.bind("#test", function() {
this.text(message);
});
})
}
})
app.controller("dCtrl", function($scope) {
$scope.products = [
{ "name" : "Escova XPTO", "description": "Lava tudo num instante"},
{ "name" : "Pasta de Dentes YMZ", "description": "Dentifrico do camandro"}
];
})
我知道我只能说:
$("#test").html(message);
但我仍然对混合 jQuery 和 AngularJS 感到困惑,我不知道这是否是正确的做法
谢谢