- Angular JS Tutorial
- AngularJS Home
- AngularJS Introduction
- AngularJS Expressions
- AngularJS Directives
- AngularJS Modules
- AngularJS Controllers
- AngularJS Scopes
- AngularJS Data Binding
- AngularJS Services
- AngularJS HTTP
- AngularJS Filters
- AngularJS Forms
- AngularJS Validation
- AngularJS DOM Manipulation
- AngularJS Select
- AngularJS Tables
- AngularJS Events
- AngularJS Routing
- AngularJS Includes
- AngularJS Animations
- AngularJS Dependency Injection
- AngularJS API
- AngularJS Deployment
AngularJS DOM Manipulation
AngularJS DOM Manipulation involves using directives, services, and built-in tools to dynamically update and control the Document Object Model (DOM). It allows developers to create interactive and responsive applications by binding data, handling events, and customizing DOM elements.
Key Concepts of DOM Manipulation in AngularJS
- Directives: AngularJS's primary way to interact with and modify the DOM.
- Two-Way Data Binding: Synchronizes changes between the DOM and the model.
- Event Handling: Responds to user interactions like clicks, hover, etc.
- Custom Directives: Extends AngularJS to create reusable DOM logic.
- $compile Service: Dynamically compiles HTML strings or templates into the DOM.
Common Directives for DOM Manipulation
1. ng-show/ng-hide
Used to conditionally display or hide elements.
<div ng-show="isVisible">This is visible!</div>
<button ng-click="isVisible = !isVisible">Toggle Visibility</button>
2. ng-class
Dynamically applies CSS classes.
<div ng-class="{'active': isActive, 'inactive': !isActive}">Dynamic Class Example</div>
<button ng-click="isActive = !isActive">Toggle Class</button>
3. ng-repeat
Repeats a block of HTML for each item in an array.
<ul>
<li ng-repeat="item in items">{{item}}</li>
</ul>
4. ng-style
Dynamically applies inline styles.
<div ng-style="{'color': textColor, 'font-size': fontSize + 'px'}">Styled Text</div>
Event Handling for DOM Manipulation
AngularJS provides directives like ng-click
, ng-mouseover
, etc., to handle user interactions.
Example: Click Event
<button ng-click="changeMessage()">Click Me</button>
<p>{{message}}</p>
<script>
app.controller('MyController', function($scope) {
$scope.message = "Hello!";
$scope.changeMessage = function() {
$scope.message = "You clicked the button!";
};
});
</script>
Using $compile for Dynamic DOM Updates
The $compile
service dynamically compiles new HTML and links it to the current scope.
Example: Dynamic HTML Compilation
<div id="container"></div>
<button ng-click="addContent()">Add Content</button>
<script>
app.controller('MyController', function($scope, $compile) {
$scope.addContent = function() {
var content = "<p>This is dynamically added!</p>";
var compiled = $compile(content)($scope);
angular.element(document.getElementById('container')).append(compiled);
};
});
</script>
Custom Directives for DOM Manipulation
Custom directives enable the creation of reusable components for DOM manipulation.
Example: Custom Directive
app.directive('highlight', function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
element.on('mouseenter', function() {
element.css('background-color', attrs.highlight);
});
element.on('mouseleave', function() {
element.css('background-color', '');
});
}
};
});
Usage:
<p highlight="yellow">Hover over me to highlight!</p>
AngularJS Services for DOM Manipulation
- $timeout: Manages delayed DOM updates.
- $interval: Repeatedly updates the DOM at defined intervals.
- $animate: Handles animations for DOM elements.
Summary
AngularJS DOM Manipulation provides powerful tools like directives (ng-show
, ng-repeat
), custom directives, and services like $compile
for dynamic and efficient control of the DOM. It ensures seamless interaction between the user interface and application logic.