動態創建一個元素下具有類「父」 和應用一些CSS類的元素,即「子」 現在我想申請一些「id」 ,所以我想知道如何做到這一點如何在以下代碼中應用「id」代碼
$(".parent").append("<a class='child' href='#bookmark" + cAnchorCount++ + "'> "+ $(this).text() +"</a>");
,以及如何在事件的一些事件綁定到它像鼠標將其
我試過,但沒有工作
$(".pushLinkBtnContainer").append("<a id='$(this).text()' class='pushLinkBtn' href='#bookmark" + cAnchorCount++ + "'>".bind("mouseover", function() {
$(this).css("background-color", "red");
}) + "</a>");
你想要做什麼目前還不清楚。 –
爲什麼你想要一個ID?你試圖給錨元素添加一個id –
好吧讓我編輯我的問題 – Faizan