也许这是一个虚拟问题,但是...我有一个文件要求图像,它工作得很好。问题是当我从其他目录链接javascript文件。文件的路径相对于当前文件而不是它自己的javscript文件。我的错误是什么?不能?
提前致谢。
目录:
/
--css
--js
--file.js
--imagenes
--close.png
index.html
如果我链接file.js中的图像和index.html中的图像,我必须调用
this.img = $('<img>');
this.img.attr('src', 'imagenes/close.png');
this.div.append(this.img);
如果我移动Index.html,我无法再次引用该图像。