如何在 java 脚本中只获取图像的 src 值

how get only src value of image in java script

我在图片标签中有这个值

我正在使用 jqgrid,当我调用时

$('#testGridList').jqGrid ('getCell', id, 'pic');

这个return

<img src="http://localhost:8080/myApp/DownloadFile?type=THU_IMG&amp;id=409" height="70" width="90" class="example1tooltip" style="cursor:pointer" alt="photo" title="View Org photo" onclick="getUxx()">

如何只获得 src 值?

您可以像下面这样获取src值。

var src = $('#testGridList').jqGrid ('getCell', id, 'pic').src;

尝试使用 attr(),如图所示:-

var gridcell = $('#testGridList').jqGrid ('getCell', id, 'pic');
var imgsrc = $(gridcell).attr("src");

DEMO