Angularjs customizes an input drop-down box component (code example)

青灯夜游
Release: 2021-02-01 11:46:30
forward
2670 people have browsed it

The following article will introduce to youAngularjsHow to customize an input drop-down box component. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

Angularjs customizes an input drop-down box component (code example)

Related recommendations: "angularjs tutorial"

Customize an input drop-down box component in angularjs, and create the component and introduced as follows.

New insertSelect.html file

  
Copy after login

directive Custom directive

//可输入select框 angular.module("controllers") .directive("insertSelect", [function () { return { restrict: 'AE', templateUrl: 'template/common/insertSelect.html', scope: { modelData: '=modelData', optionList: '=optionList', placeholder: '=placeholder', //placeholder 可由引入页面传入 }, link: function ($scope, $elem) { // }, controller: ["$scope", function ($scope) { }] } }]);
Copy after login

The page introduces the insertSelect component

 
Copy after login

For more programming-related knowledge, please visit:Programming Teaching! !

The above is the detailed content of Angularjs customizes an input drop-down box component (code example). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
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!