如何为不同元素设置相同的网址

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

  • 对于多个元素jQuery相同的点击事件9个答案

  • 你可以设置一个主页变量,并像这样使用

    var homePageUrl = "http://realestatecenter.bankofamerica.com/"
    

    并传递给window.location.href = homePageUrl

    你也可以使它像自己的功能

    function redirect(path) {
     window.location.href = path
    }
    

    然后在url中作为参数在每个地方调用该函数,至少您将所有内容都采用一种函数与重复代码

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

    上一篇: How to set same url for different elements

    下一篇: How can i use this script with 2 buttons