我想有一个javascript日期对象,其时间根据Web服务器设置。
<script type="text/javascript">
var date=new Date();
date.setTime(<?php echo time() ?>);
alert(date.toString()); //displays the date and time according to the timezone set on the client's computer
</script>
以上代码是否可靠?
非常感谢大家。