我在图片标记中有这个值
我正在使用jqgrid,当我打电话
$('#testGridList').jqGrid ('getCell', id, 'pic');
此回归
<img src="http://localhost:8080/myApp/DownloadFile?type=THU_IMG&id=409" height="70" width="90" class="example1tooltip" style="cursor:pointer" alt="photo" title="View Org photo" onclick="getUxx()">
如何仅获得src
值?
答案 0 :(得分:0)
你可以获得如下的src值。
var src = $('#testGridList').jqGrid ('getCell', id, 'pic').src;
答案 1 :(得分:0)
尝试使用attr()
,如下所示: -
var gridcell = $('#testGridList').jqGrid ('getCell', id, 'pic');
var imgsrc = $(gridcell).attr("src");