使用此代码,来自chrome extens文档
$('#go-to-options').bind('click', function() {
if (chrome.runtime.openOptionsPage) {
// New way to open options pages, if supported (Chrome 42+).
chrome.runtime.openOptionsPage();
} else {
// Reasonable fallback.
window.open(chrome.runtime.getURL('options.html'));
}
});
它给出了一条错误消息: 未捕获的TypeError:无法读取属性'创建'未定义的
如何打开选项页面?点击按钮?