我在datetimepicker下面包含了
for i in *; do
if test -f "$i"
then
if test -L "$i"
then
echo "File $i,Link"
else
printf "File $i,"
readelf -a -W $i |grep SONAME
fi
fi
这里我在ng-change事件中提到了函数setStartDateSlider。但是在选择date之后,它没有调用。我需要在此功能中选择日期。
答案 0 :(得分:0)
setStartDateSlider
是一个功能还是属性?
如果它是一个函数,那么你应该在函数名后添加()
。
所以它看起来像
ng-change="setStartDateSlider()"