History.go(-1)在chrome扩展程序中不起作用

时间:2018-10-30 05:05:00

标签: google-chrome google-chrome-extension

我正在创建一个Chrome扩展程序,该扩展程序可以返回某个站点。但是history.go(-1);语法不起作用为什么?

chrome.tabs.executeScript({
code: 'document.URL;'
}, function (domain) {
var google = 'https://www.google.co.kr/';
if (domain == google) {
    history.go(-1);
}
else
    alert('not google')


$.ajax({
    type: 'GET',
    url: 'http://www.mhwdb.kr/main/apis/monsters',
    // data: {
    //     url: domain
    // },
    // dataType: 'json',
    success: function(success){
        document.getElementById('url').innerHTML = success;
    },
    error: function(error) {
        console.log(error);
    }
})


})

0 个答案:

没有答案