次の文字列を含む変数があります。
var html = '<a href="http://www.taxibooking.dch/wp-content/uploads/2012/12/4-3.jpg"><img src="http://www.taxibooking.dch/wp-content/uploads/2012/12/4-3-300x202.jpg" alt="" title="4 (3)" width="300" height="202" class="alignnone size-medium wp-image-7" /></a>';
そして、次の2つの操作を使用しようとします:
full_url = jQuery('a', html).attr('href');
tiny_url = jQuery('img', html).attr('src');
は正常にtiny_url
動作し、値を返しますが、http://www.taxibooking.dch/wp-content/uploads/2012/12/4-3-300x202.jpg
常にfull_url
空です。
これがなぜなのか誰か教えてもらえますか?