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.
リンクのタイトル値をリンクのテキストとして追加するにはどうすればよいですか。私はこのコードを持っています:
<a href="#" title="Title value"></a>
...そしてそれをクリックした後、私はこのようなものが欲しいです:
<a href="#" title="Title value">Title value</a>
ありがとうございました!
これを試して:
$("a").click(function() { $(this).text($(this).prop("title")); });
これ
$('a').click(function() { $(this).text($(this).attr('title')); }
動作するはずです。
<a>タグに特別なIDを付けて、参照できるようにしたい場合があります。
<a>