字符串末尾的变量

时间:2013-05-21 14:39:22

标签: javascript syntax

我正在尝试在当前窗口的左上角打开一个弹出窗口。到目前为止,y定位工作正常,但我不能让x工作。我怎样才能正确理解语法?

function openPopup() {
 var url = this.href;
 window.open(url, 'popup_id', 'scrollbars, resizable, width=400, height=300, top='+ window.screenY,'left='+ window.screenX'');
 return false;
}

1 个答案:

答案 0 :(得分:0)

您忘记了第二个+

window.open(url, 'popup_id', 'scrollbars, resizable, width=400, height=300, top='+ window.screenY +', left='+ window.screenX);