Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この要素があり、スパンには削除できないクリックイベントが含まれています。span要素に触れずにA要素のテキストを変更したい。
<a href="#"> <span>X</span> Show location </a>
変更するテキストを別のSPAN-Elementに追加し、これを変更します。Aタグに直接アクセスするには、常にSPANタグに注意する必要があります。
$('a').contents()[1].nodeValue="new value";