jQuery - 在jQuery pop中打开链接

时间:2011-04-30 15:41:32

标签: javascript jquery ajax

我正在寻找一个针对特定链接(基于类)的jQuery登录,并将在弹出窗口中打开该链接?

因此,不必离开网站,而是在弹出窗口中提供所有外部内容。

有谁知道这样的插件?

3 个答案:

答案 0 :(得分:1)

你不需要jQuery。你可以这样做:

<强> HTML

<a href="http://www.example.com" onClick="window.open(this.href, null, ' '); return false;">Click me!</a>

答案 1 :(得分:0)

查看此示例:http://jsfiddle.net/Davood/MF44t/

或者你可以使用colorbox插件:http://colorpowered.com/colorbox/

请参阅此页面了解演示:http://colorpowered.com/colorbox/core/example1/index.html

并单击“Outside HTML(Ajax)”链接以查看演示。

答案 2 :(得分:0)

我不知道我是否正确,但我想这可以解决问题 (我不确定我真的明白你想要的东西)

<html>
    <head>
        <script src="jquery-1.5.js"></script>
        <script>
         $(
            function() {
                $(".classSpecialLink").each(
                    function() {
                        this.goto = this.href;
                        this.href = "javascript:;";
                    }
                ).click(
                    function() {
                        window.open(this.goto);
                    }
                )
            }
        ); 
        </script>
    </head>
    <body>
        <a href="http://www.google.com" class="classNormalLink">normal link</a><br />
        <a href="http://www.google.com" class="classSpecialLink">special link</a>
    </body>
</html>

ps:登录你的意思是插件吗?