-2
我不明白爲什麼attr()不起作用(請參閱下面的代碼)。我可以在源代碼中看到正確的標籤,標籤正在創建,但在網站上不可見。Attr()未顯示
app.html('<h1>' + product.name + '</h1><img src="' + product.img + '" width="300"></img><a></a>');
$('a').attr("href", product.link);
我不明白爲什麼attr()不起作用(請參閱下面的代碼)。我可以在源代碼中看到正確的標籤,標籤正在創建,但在網站上不可見。Attr()未顯示
app.html('<h1>' + product.name + '</h1><img src="' + product.img + '" width="300"></img><a></a>');
$('a').attr("href", product.link);
沒有內容在<a>
標籤中。這就是爲什麼。
<a>1st tag</a>
<a></a><!--Second tag-->
:使用網站上不可見。這是因爲<a></a>
沒有任何內容
第二:關於</img>
你可以在Why is the <img> tag not closed in HTML?
看看哦,是的。我必須去睡覺我猜:)謝謝! –