我setPopup
根据某些条件多次调用 crossrider 时遇到问题,例如如果用户已登录,则仅在浏览器操作单击时显示弹出窗口,否则显示登录弹出窗口。
但是,在那之后它只调用一次。
function handler(evtXHR) {
if (invocation.ready State == 4) {
if (invocation.status == 200) {
//alert("successs : "+invocation.responseText);
if (invocation.responseText == "demo") {
//buttonState = true;`enter code here`
appAPI.browserAction.setPopup({
resourcePath: 'html/New popup.html',
height: 1000,
width: 1000
});
}