当前位置: 代码迷 >> Web前端 >> reload()跟confirm()两window对象自带函数
  详细解决方案

reload()跟confirm()两window对象自带函数

热度:482   发布时间:2012-07-01 13:15:00.0
reload()和confirm()两window对象自带函数

<script?language="JavaScript">

document.write(new?Date());

</script>

<input?type="button"?value="刷新页面"?onclick="location.reload()">

<input?type="button"?value="搜索功能"?onclick="redirect()">

????<script?language="JavaScript">

function?redirect() {

??var?flag?=?window.confirm("确定要转到搜索页面吗?");

??if(flag){

???????????????????window.location="http://www.v512.com/batch.search.php";

??}

}

</script>

<!--EndFragment-->
  相关解决方案