所以这是我的jquery和我的html代码,我在那些li中有内容,但我不想用所有内容炸掉页面。只是希望它在jquery的某个地方,我没有看到。感谢
$(function(){ $( '的jCarousel')。的jCarousel({ 换行:'两个', 汽车:'4' //核心配置在这里 });
restrict: 'A',
scope: {
ngModel: '='
}
link: function(scope, elem, attrs, ngModelCtrl) {
var options = {
dateFormat: "mm/dd/yy",
inline: true,
showOtherMonths: true,
dayNamesMin: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
onSelect: function (dateText) {
scope.ngModel = dateText;
}
};
elem.datepicker(options);
}