Jquery WordPress PHP 图像参考
我试图引用同一文件夹中具有 .js 的图像,但在我的 php/wordpress 页面的任何页面上调用它。
所以 .js 位于 http://www.example.com/wp-content/themes /includes/demo/facebox.js 并且图像已打开 http://www.example.com/wp-content/themes /includes/demo/endinglabel.png
但我引用了首页和其他页面上的js,基本上是www.example.com。这基本上是对 Facebox 的修复,因为它不会让我在选择我的 href 时自动加载。能否在 .js 中找到当前 .js 位置的路径?
I'm trying to reference a image that is in the same folder has the .js but call it on any page of my php/wordpress page.
So the .js is in
http://www.example.com/wp-content/themes/includes/demo/facebox.js
and the image is on
http://www.example.com/wp-content/themes/includes/demo/closinglabel.png
but I'm referencing the js in the front page and on other pages basically www.example.com. This is basically a fix for facebox because it won't let me autoload while picking my hrefs. Can in .js find the path to the current .js location?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用站点相对 URL(以 / 开头的 URL)引用图像,然后该图像应该可以在您使用的任何域的任何页面上运行,只要该域具有相同的文件系统路径或/和重写规则。
另外,您的第二个问题的答案可以在这里找到:
我的脚本 src URL 是什么?
I recommend referencing the image with a site-relative URL (one that begins with a /) then the image should work on any page of any domain that you use, so long as the domain has the same file system paths or/and rewrite rules.
Also, an answer to your secondary question can be found here:
What is my script src URL?