2016-04-03 8 views
0

Ich habe diesen Wert in Bildtagwie in Java-Skript nur src Wert von Bild bekommen

ich jqGrid bin mit und wenn ich rufe

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

Diese Rückkehr

<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()"> 

Wie Ich bekomme nur src Wert?

Antwort

0

Versuchen attr() wie abgebildet mit: -

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

DEMO

+0

.getAttribute ("src") nicht funktioniert. "Uncaught TypeError: $ (...). JqGrid (...). GetAttribute ist keine Funktion" – iTech

+0

@ iTech..see aktualisiert ans. –

+0

danke..updated code funktioniert :) – iTech

0

Sie können src-Wert wie folgt erhalten.

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