firefox中如何处理long类型啊
有一个日期,
var date = new Date();
var long = date.getTime();
在IE里可以拿到正确的毫秒数,但在firefox里就整数溢出了,
我的firefox是版本是2.0,
请问怎么处理能在两种浏览器里都拿到正确的long变量的值?
------解决方案-------------------- <script type= "text/javascript ">
var date = new Date();
var long = date.getTime();
alert(long);
</script>
我测试怎么没溢出