web-dev-qa-db-ja.com

JavaScriptを使用してポップアップウィンドウでリンクを開く

画面の中央にもある特定のサイズのポップアップウィンドウにhrefをロードしようとしています。

ここに私のソースがあります:

<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>

そして、ここに私の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");
}

これはテスト時に404エラーを返すようです。何が間違っていますか?

ヒープに感謝します。

11
user2105885

function windowpop(url, width, height)この関数には、URLを返す必要があります。

onclick="return windowpop(545, 433)"widthheightのみを返します。

this.hrefを使用してURLを返します:

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

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

12
Mal