为什么window.history.back();这么慢?

时间:2017-01-22 07:13:58

标签: javascript

我在onclick的一个函数中使用它,它似乎工作正常,但真的很慢!它向我显示上一页大约需要10秒钟! 这是我的完整代码

	function goBack() {
		window.history.back();
	}
button {
    display: inline-block;
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.27, 0.29, 1, 0.3);
}
button:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
    text-decoration: none;
}
<button onclick="goBack()">Go back</button>

任何想法有什么不对?

0 个答案:

没有答案