我在這個變種具有這樣的:「版本」 在這裏,我有幾行像這樣的:查找,jQuery中更換的每個元素
<div class="link" id="1"><a ...>Anchor</a></div>
<div class="link" id="2"><a ...>Anchor 2</a></div>
我jQuery的搜索代碼,把上面的代碼到:
<div class="link" id="1"><a ...><img src="...?anchor=Anchor" /></a></div>
<div class="link" id="1"><a ...><img src="...?anchor=Anchor 2" /></a></div>
我從代碼有什麼期望:找到每個錨 - 獲取它 - 生成一個顯示這種定位的圖像。 PS:我有「圖像生成」功能。
解決:
$(".link").each(function(){
anchor = $(this).find('a').text();
$(this).find('a').html('<img src="generateLink.php?nr='+encodeURIComponent(anchor)+'" width="39" height="12"/>');
});
,你不能有兩個'ID =「1」',希望這是一個錯字。 –
你的問題是什麼? –
另外ID不應以數字開頭。 – jtheman