当前位置: 代码迷 >> JavaScript >> 时间戳有关问题
  详细解决方案

时间戳有关问题

热度:120   发布时间:2012-11-09 10:18:48.0
时间戳问题
<input type="button" onclick="location.href='search.asp?time=new Date()';" value=" 重 置 " />

上句new Date()为什么无效呢,TKS

------解决方案--------------------
<input type="button" onclick="location.href='search.asp?time=' + new Date();" value=" 重 置 " />
  相关解决方案