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.
我想使用 javascript 函数在页面上插入图像
//JS $('#fff').html('<img src="../images/pic.jpeg">');
当我写上面的网址时......没有加载。
我怎样才能写正确的网址?
如果 js 代码在您的视图模板中,那么您可以这样做
$('#fff').html('<?php echo image_tag('pic.jpeg') ?>');
否则,如果它在单独的 js 文件中,则需要为其使用绝对路径。
$('#fff').html('<img src="/images/pic.jpeg">');