我正在使用角度ui日历,并且所有,我有下一个和previus按钮,我点击按钮它工作,它改变月份,但我需要添加另一个代码当我点击我按钮,我试着用这个打电话:
$('body').on('click', 'button.fc-next-button', function() {
//do something
});

它不起作用
答案 0 :(得分:0)
我希望你在谈论fullcalendar。
试试这个:
public class CompareToDemo {
public static void main(String[] args) {
// Integer x=5;
int y=25;
System.out.println(y+" this is int variable");
Integer in = (Integer)y;
//Integer in = new Integer(y);
if(in instanceof Integer){
System.out.println(in +" this is Integer variable");
}
}
}
干杯!
答案 1 :(得分:-2)
HTML
<button ng-click="next()">Next button</button>
<强> JS 强>
在Angular代码中添加它。单击该按钮,将调用此函数。
$scope.next= function(){
// your code
},