12
內比方說,我有:AngularJS element.innerHTML是不確定的,從指令
directives.directive('foo', function() {
return {
restrict:'A',
scope: true,
link:function (scope, element, attr) {
console.log('innerHTML is ' + element.innerHTML);
scope.$watch('update', function (newValue) {
console.log('innerHTML is... ' + element.innerHTML);
});
}
}
});
...然後innerHTML的是不確定的。我想這是由於Angular處理DOM的方式。什麼是獲得innerHTML的正確途徑?
謝謝。恰恰是我錯過了。 – 2013-02-11 00:47:45