如何在jQuery中获取URL

时间:2012-06-15 11:38:17

标签: jquery url filepath

我目前正在使用此代码:

jQuery("input[type=file]").filestyle({ image: "http://localhost:8888/davidgray/wp-content/themes/davidgray/images/browse.png", imageheight : 22, imagewidth : 72, width : 460 });

然而,当我将其切换为直播时,我当然想要它将要播放的网址,我该如何让它变得动态?

干杯, 史蒂夫

2 个答案:

答案 0 :(得分:3)

只需使用相对网址

    jQuery("input[type=file]").filestyle({
        image: "/davidgray/wp-content/themes/davidgray/images/browse.png",
        imageheight : 22,
        imagewidth : 72,
        width : 460
    });

答案 1 :(得分:0)

使用window.location?

这是一篇值得一读的文章。

http://davidwalsh.name/javascript-window-location

(假设您不知道相对网址)