gpt4 book ai didi

javascript - 在Codeigniter中: How to give the image path in external js file

转载 作者:行者123 更新时间:2023-11-28 18:02:59 25 4
gpt4 key购买 nike

图像路径- asset/rating/star.png现在如何在外部js中给出这个路径我还加载了 url 助手。

$(document).ready(function(){
$("#1_star").hover(function(){
$("#1_star").attr("src","Path for image");
});
});

我就是这样做的

$(document).ready(function(){
$("#1_star").hover(function(){
$("#1_star").attr("src","<?php echo base_url('assets/rating/star.png');?>");
});
});

最佳答案

试试这个:

$(document).ready(function(){
$("#1_star").hover(function(){
var base_url = window.location.origin;
$("#1_star").attr("src",base_url + '/assets/rating/star.png');
});
});

关于javascript - 在Codeigniter中: How to give the image path in external js file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43205719/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com