1

我目前正在使用此代码:

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

但是,当我将其切换到实时状态时,我当然想要它要打开的 URL,我该如何使它成为动态的?

干杯,史蒂夫

4

2 回答 2

3

只需使用相对 URL

    jQuery("input[type=file]").filestyle({
        image: "/davidgray/wp-content/themes/davidgray/images/browse.png",
        imageheight : 22,
        imagewidth : 72,
        width : 460
    });
于 2012-06-15T11:43:43.000 回答
0

使用 window.location ?

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

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

(这是假设您不知道相对 url)

于 2012-06-15T11:43:31.097 回答