什麼是通過以下結構獲取img src值的正確方法。下面的代碼返回空白。fetch value img src jquery
JS斌(點擊笑臉):https://jsbin.com/lelaxam/edit?html,js,output
注意:當我刪除圖像周圍的A HREF標籤我收到圖片src,如果我把周圍IMG的A HREF標籤,我不接受IMG SRC
HTML:
<td class="sim-row-edit" data-type="testtest" style="padding-right:10px">
<a href="http://crezzur.com" target="_blank">
<img src="https://img.smileys.nl/152/winky.png" alt="" border="0" width="42" height="42" />
</a>
</td>
JQUERY:
if (big_parent.attr("data-type") == 'testtest') {
$("#sim-edit-testtest .image").val(big_parent.children('img').attr("src"));
$("#sim-edit-testtest .url").val(big_parent.children('a').attr("href"));
無選擇器的真正匹配什麼,你不能有一個元素與' adeneo
Indead像@的ID adeneo說,當你看着我的jsbin時,你注意到了一個href版本的工作原理,img部分由於某種原因失敗。我已經搜索並注意到您需要使用find來查找子元素,但對我而言沒有成功。 – fungames
@ ZakariaAcharki - bin被編輯,我直接從bin複製/粘貼HTML,然後它是' adeneo