我有这个JS代码:
const getData = {
// set vars
start_date: <?php echo $start_ts; ?>,
end_date: <?php echo $stop_ts; ?>,
init: function() {
this.cacheDom();
this.bindEvents();
},
cacheDom: function() {
this.form = form;
this.show = show;
},
bindEvents: function() {
this.show.click(this.sendData(this.start_date, this.end_date));
},
sendData: function(sdate, edate, e){
e.preventDefault();
// this.form.submit();
console.log(sdate);
console.log(edate);
},
render: function() {}
}
// run object
getData.init();
我正在尝试通过this.start_date
点击this.end_date
事件。尝试了几种不同的方式(你看到的就是其中之一)
请帮助我通过变量传递点击事件。