0
這一切
首先是我的plunker:https://plnkr.co/edit/JbG6vlSbeWrBcmYhmhF1?p=preview試圖與角1.4.9定製指令,但堅持了鏈接功能
我試圖讓指令添加浮動標籤如本example任何輸入領域。
例如我有以下輸入字段:
<input floating-label placeholder="Better field" type="text" class="form-control" ng-model="floatingDirective"/>
floating-label
應該以這樣的方式工作,這將擴大到下面的代碼:
<div class="field">
<label ng-show="betterField" class="show-hide">Better field</label>
<input type="text" class="form-control" ng-model="betterField" placeholder="Better field"/>
</div>
我不能做到這一點,這是我的指令,目前爲止:
.directive('floatingLabel', function ($compile) {
return {
restrict: 'A',
require: 'ngModel',
scope: {
ngModel: '='
},
link: function(scope, element, attrs, ctrl, transclude) {
var wrapper = '<div class="field">' +
'</div>';
element.after($compile('<label ng-show="' + attrs.ngModel + '" class="show-hide">' + attrs.placeholder + '</label>')(scope));
element.wrap(wrapper);
}
}}
)
無法實現如何組合wrap
,prepend
和append
以獲得所需結構以及如何使ng-show
與ng-model
一起使用的值。
預先感謝您。
其實你的解決方案的工作,我想過這個問題,但我想這樣做的一種我想要的方式,否則我們的團隊應該做很多工作來替換所有的輸入字段,另外還需要另外一個表單元素來做另一個指令。如果沒有人會再提供,我會在幾天內接受你的回答。 – Anatoly