AngularJS implements the method of binding events to dynamically generated elements

高洛峰
Release: 2017-03-25 16:11:50
Original
1242 people have browsed it

The example in this article describes how AngularJS implements binding events to dynamically generated elements. Share it with everyone for your reference, the details are as follows:

1. We know that in jQuery, an element is dynamically generated. If you want to dynamically bind events while dynamically generating the element, you can use the live/on method (in jquery3.0 The bind method has been abolished).

2. In AngularJS, operating DOM is generally completed in instructions. The event listening mechanism is to bind events to the statically generated DOM. If DOM nodes are dynamically generated in instructions, the dynamically generated nodes will not be used by JS. Event monitoring.

For example:

angular.module('myapp',[]) .directive('myText',function(){ return{ restrict:'A', template:'

Hi everyone

', link:function(scope,ele,attr){ } } })
Copy after login

In this command, a new DOM node will be generated:

Hi everyone

Copy after login

But if no processing is done, the ng-click event here cannot be implemented, because the event monitoring has already been done when the static html page is generated. Finish. So how to bind events to dynamically generated elements and implement dynamic monitoring of events?

3. Use the $compile service to compile the DOM to achieve dynamic event binding

var template:'

Hi everyone

', var content = $compile(template)(scope);
Copy after login

Through these two sentences, first compile the DOM, and then use the compiled DOM to add it to the previous static node to achieve dynamic binding. Certain events, etc. should be injected into $compile service

.directive('myText',function($compile){})
Copy after login

The complete code is as follows:

angular.module('myapp',[]) .directive('myText',function($compile){ var template:'

Hi everyone

', return{ restrict:'A', link:function(scope,ele,attr){ ele.on("click", function() { scope.$apply(function() { var content = $compile(template)(scope); element.append(content); }) }); } } })
Copy after login

I hope this article will be helpful to everyone in AngularJS programming.

For more related articles on how AngularJS implements binding events to dynamically generated elements, please pay attention to the PHP Chinese website!

Related articles:

AngularJS implements the method of dynamic compilation and adding to dom

AngularJS dynamically generates the ID of the div

AngularJs dynamically loads modules and dependencies

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!