使用模块? w / nodeJS

时间:2016-03-03 00:34:26

标签: javascript module

我已添加包含以下代码的外部文件的链接。我会在身体中放置什么来使这段代码有效? 非常感谢!

module.exports = {

clickEvent: function() {
var calEvent = $('.fc-time-grid-event')[0];
var calEventStart = $(calEvent).find('.fc-time').attr('data-start');
$(calEvent).click();
return calEventStart;
},
fillSubmit: function() {
var data = {
name: 'Joe Test',
email: 'test@timekit.io',
comment: 'This is a test'
};
$('.input-name').val(data.name);
$('.input-email').val(data.email);
$('.input-comment').val(data.comment);
$('.bookingjs-form-button').click();
return data;
}
}

0 个答案:

没有答案