我想刪除顯示在由tag-explorer.js
生成的標籤左側的字母。我怎樣才能做到這一點?編輯標籤explorer.js
這裏的直播網站:https://ewelinawoloszyn.github.io/Research/research_03.html
這裏的腳本:
// The container to hold the tags.
tagContainer = document.querySelector('.tag-container');
// An array of objects where the `'element'` property is the article element (to
// be hidden), and the `'tags'` attribute is an array of tags on this article.
// Articles do not necessarily have to be the <article> element.
articles = [].slice.call(document.querySelectorAll('article')).map(function (article) {
return {
'element': article,
'tags': [].slice.call(article.querySelectorAll('.tags li')).map(function (tag) {
return tag.textContent;
})
};
});
// Create an array of tag names to be available for filtering.
tagNames = ['Public Finance', 'Access', 'Data','Money','Open Source'];
// Initialise tag-explorer.
tagExplorer(tagContainer, articles, tagNames);
下面是所需的輸出 - 我喜歡紅色的交叉字母被刪除:
任何建議非常感謝。
更改此:
*「刪除標籤前的字母」*:我不明白這是什麼意思。你能舉一個你想達到的具體例子:輸入和期望的輸出嗎? – trincot
當然,我如何在Stackoverflow @trincot中添加圖像? – Neko
編輯問題時,輸入區域頂部有一個按鈕欄。點擊帶有風景的圖標(位於「{}」圖標旁邊)。 – trincot