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.
ラベルクラスの要素があります
<li><a><span class='label'>$element</span></a></li>
loadStuffonclickを実行できるようにしたいです。クリックされた要素の値を次のように渡すにはどうすればよいですか:
loadStuff
$(".label").click(loadStuff(valueOfClickedElement));
あなたが値を言うとき、私はあなたがスパンのテキストを意味していると思います..
その場合は、以下を試してください。
$(".label").click(function () { loadStuff($(this).text()); });
$(".label").click(function() { loadStuff($(this).text()); });