我目前正在使用此代码:
jQuery("input[type=file]").filestyle({
image: "http://localhost:8888/davidgray/wp-content/themes/davidgray/images/browse.png",
imageheight : 22,
imagewidth : 72,
width : 460
});
然而,当我将其切换为直播时,我当然想要它将要播放的网址,我该如何让它变得动态?
干杯, 史蒂夫
答案 0 :(得分:3)
只需使用相对网址
jQuery("input[type=file]").filestyle({
image: "/davidgray/wp-content/themes/davidgray/images/browse.png",
imageheight : 22,
imagewidth : 72,
width : 460
});
答案 1 :(得分:0)