色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

如何遠程替換文本并添加項目鏈接?[已關閉]

阮建安1年前9瀏覽0評論

編輯問題,以包括預期行為、特定問題或錯誤以及重現問題所需的最短代碼。這將有助于其他人回答問題。

我將冒險幫助推動這個問題,因為如果你不添加一些實際的代碼,它很可能會關閉。

下面的代碼片段做了我認為你正在描述的事情,其中它替換了& lth1 & gt"標題& quot帶超鏈接的文本。這是我對你想達到的目的的最佳猜測。如果我的解釋有誤,請提供更多細節。

//capture the heading element
let myHeading = document.querySelector("#target_this_heading");
//capture the text within the heading element
let myHeadingText = myHeading.textContent;

//create an anchor tag
let aTag = document.createElement('a');
//populate the anchor tag with an HREF
aTag.setAttribute('href',"http://www.yahoo.com");
//set the text of the anchor tag
aTag.textContent = myHeadingText;

//blank out the existing heading
myHeading.textContent = "";
//add your anchor tag
myHeading.appendChild(aTag);

<h1 id="target_this_heading">Go to Yahoo!</h1>
<p>here is a paragraph full of text.</p>