Open link in Popup Window with Javascript [closed]

江枫思渺然 提交于 2019-12-17 22:42:54

问题


I'm trying to load a href into a popup window of specific dimensions which also centers in the screen.

Here is my source:

<li>
    <a class="sprite_stumbleupon" href="http://www.stumbleupon.com/submit?url=http://www.your_web_page_url" target="_blank" onclick="return windowpop(545, 433)"></a>
</li>

And here is my javascript:

function windowpop(url, width, height) {
    var leftPosition, topPosition;
    //Allow for borders.
    leftPosition = (window.screen.width / 2) - ((width / 2) + 10);
    //Allow for title and status bars.
    topPosition = (window.screen.height / 2) - ((height / 2) + 50);
    //Open the window.
    window.open(url, "Window2", "status=no,height=" + height + ",width=" + width + ",resizable=yes,left=" + leftPosition + ",top=" + topPosition + ",screenX=" + leftPosition + ",screenY=" + topPosition + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
}

This seems to return a 404 error when tested. What am i doing wrong?

Thanks heaps.


回答1:


function windowpop(url, width, height) The function requires a URL to be returned to it.

onclick="return windowpop(545, 433)" You're only returning the width and height.

Try returning the URL using this.href:

onclick="return windowpop(this.href, 545, 433)"

example: http://jsfiddle.net/zKKAM/1/



来源:https://stackoverflow.com/questions/16182915/open-link-in-popup-window-with-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!