我对javascript / jquery不太熟悉。我想把图像路径放在img src中。是否有可能像我们在php或其他一些我需要使用的那样做。
<img src="path of file that will come from javascript/ajax" width="35" height="30" id="profile" class="profile img-circle" name="profile" data-original-title="Steve" alt="Steve">
我知道在php中它很容易。
<img src="<?php echo $imgpath; ?>" width="35" height="30" id="profile" class="profile img-circle" name="profile" data-original-title="Steve" alt="Steve"></a>
我尝试按照我们在<script>imgpath</script>
这样的方式进行操作,但它无效。