这是我的代码
<a target="_blank" href="http://www.home.test.com/test/redirector.jspx?
action=ref&cname=EDITORIAL&ckey=2259303&cc=US&lc=eng&cmpid=MA41335AM"
style=cursor:hand ;color: #ffffff ;text-decoration:none">
<img height="250" src="http://newsletters.tm.agilent.com/epsg/13MR/MCD-CID/11_CC_020783-
N9322C/N9322C_Application.jpg" alt="Basic spectrum analyzer" style="padding 0 0 0
0;margin:0 0 0 0;"border="0"></a>
现在问题是我想找到基于href标签的img alt属性文本。 它是动态生成所以它可以是任何有任何方法来找到href最接近的img标签或href下一个img标签..
答案 0 :(得分:0)
直接子选择器将是最好的
$('a > img').attr('alt');