Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jquery mobile,但在我的网站上加载图像时遇到了问题。
Jquery mobile 将我的基本 href 添加到图像源的开头,使我的源错误..
我怎样才能禁用它?
解决方案
在网上搜寻了几天的解决方案后,我终于找到了一些有用的东西。
我下载了jquery mobile的未压缩源代码,并将变量“newPath”替换为以下代码:
var newPath = path.get( $('head base').attr('href') );
奇迹般有效!