fullcalendar外部事件数据在eventReceive中不必要地从字符串转换为数字:

时间:2017-09-09 23:12:14

标签: type-conversion fullcalendar

我将数据 - 从外部事件div传递到fullcalendar:

<div 
class="fc-event"
data-some_text="name_of_Some_event_221"
data-some_ID_number_as_string="45787">

当我收到活动并测试类型时:

eventReceive: function(event){

   alert(typeof event.some_text);// RETURNS STRING
   alert(typeof event.some_ID_number_as_string);// RETURNS NUMBER

}

我想保留传递的数据&#39; some_ID_number_as_string &#39;以字符串格式 - 用于连接和字符串比较。

为什么/这是转换为数字的位置 - 以及 - 如何防止将其转换为数字?

感谢。

0 个答案:

没有答案