使命召唤11smaa:请帮忙译一下这段话

来源:百度文库 编辑:神马品牌网 时间:2024/04/28 03:52:39
<script>
function del(datas,tname)
{
var truthBeTold = window.confirm("确定删除学期("+tname+")吗?");
if (truthBeTold)
{
document.location.replace(datas);
}
}
</script>

当确定后 当前浏览器将跳转到datas指定的文档
replace()方法与location.href有一点不同之处就是 replace方法不在history中生成记录
就是说你 按了back也不会回到被改变的页面 会回到还要早那个页面

看来你提的总是太深奥了,来这里的很少有高手