在javascript函数中使用当前网址

这个问题在这里已经有了答案:

  • 使用JavaScript获取当前网址? 18个答案

  • window.location.href包含页面的当前URL。

    所以你的函数应该是这样的:

    function twitterShare(){
        window.open('http://twitter.com/intent/tweet?text=Check this out here: ' + window.location.href,
                    "twitterWindow", "height=380,width=660,resizable=0,toolbar=0,menubar=0,status=0,location=0,scrollbars=0")
        return false;
    }
    

    你可以使用window.location.href 。 它保存当前页面的值。

    链接地址: http://www.djcxy.com/p/22539.html

    上一篇: Using current url in a javascript function

    下一篇: How to get current URL using javascript