0
在我的Greenhouse工作板上,有一些鏈接允許申請人從Dropbox上傳他們的簡歷。我需要刪除Dropbox鏈接。我可以用document.getElementsByClassName("link-container")
來識別子節點,但任何人都可以幫助刪除那個data-source="dropbox"
?刪除子節點
<div class="link-container">
<a data-source="attach" href="#">Attach</a>
<a data-source="dropbox" href="#">Dropbox</a>
<a data-source="google-drive" href="#">Google Drive</a>
<a data-source="paste" href="#">Paste</a>
</div>
ES6選項不適用於我,但非ES6的一個完美工作 - 謝謝! – user3401641