标签:
<script> function convertURL(){ var url = location.href; var timstamp = (new Date).valueOf(); if (url.indexOf("?")>=0){ url = url + "&ts=" + timstamp; }else { url = url + "?ts=" + timstamp; } location.href = url; alert(23445) } document.getElementById("refresh").onclick = function(){ convertURL() }; </script>
标签:
原文地址:http://www.cnblogs.com/sussski/p/4223737.html