The following article will introduce to you AngularjsHow 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.
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
<style type="text/css"> .insert-select { position: relative; } .input-box { position: absolute; height: calc(100% - 4px); width: calc(100% - 25px); top: 2px; left: 2px; padding-left: 10px; outline: none !important; border-radius: 4px !important; border: none !important; } </style> <!--可输入下拉框--> <div class="insert-select"> <select ng-attr-placeholder="{{placeholder}}" class="form-control" chosen ng-model="modelData" ng-options="item for item in optionList"> <option value=""></option> </select> <input type="text" class="input-box" ng-attr-placeholder="{{placeholder}}" ng-model="modelData"> </div>
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) { }] } }]);
The page introduces the insertSelect component
<insert-select model-data="formData" option-list="successCodeList" placeholder="'请选择'"> </insert-select>
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!