0
我只是想樣式裏面我是用http://uniformjs.com與angularjs jQuery插件的複選框Unform jQuery插件默認複選框。如何風格的瀏覽器使用自定義指令在angularjs
這裏的複選框輸入元素我想用插件方式:
<label><input type="checkbox" plugin-uniform id="inline"> Inline editing</label>
這裏是對自定義指令,我爲寫:
myApp.directive('pluginUniform', function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
Layout.initUniform();
}
};
});
這裏是Layout.initUnform () code:
var Layout = function() {
//other stuff
initUniform: function (els) {
if (els) {
jQuery(els).each(function() {
if ($(this).parents(".checker").size() == 0) {
$(this).show();
$(this).uniform();
}
});
} else {
handleUniform();
}
}
function handleUniform() {
if (!jQuery().uniform) {
return;
}
var test = $("input[type=checkbox]:not(.toggle), input[type=radio]:not(.toggle, .star)");
if (test.size() > 0) {
test.each(function() {
if ($(this).parents(".checker").size() == 0) {
$(this).show();
$(this).uniform();
}
});
}
}
//other stuff
}
我有uniform.default.css
和jquery.uniform.js
已經到位。
有人能告訴我如何使用自定義指令在angularjs中將瀏覽器默認複選框樣式設置爲http://uniformjs.com jQuery插件複選框樣式?
是的,它現在的工作,謝謝:)。但它現在在控制檯上給我這個錯誤'TypeError:undefined不是''input type =「複選框」plugin-uniform =「」id =「autoopen」>'和''。 – skip 2014-09-13 21:51:18
您是否在頁面中包含jQuery之前包含jQuery?這是需要使'angular.element'使用jQuery – charlietfl 2014-09-13 21:53:27
是的,它在angularjs庫之前。 – skip 2014-09-13 21:54:54