的onclick DIV ID我想採取一個div的ID,並用它來調用一個文件名,但我不知道該怎麼做。用於文件名
例如元素是
<p id="smith_janis" class="name">Janis Smith</p>
等類似
$(".name").click(function() {
$(this).get the element's id and turn it into variale maybe?
$("#text").load(the name of the element +".txt"); or $("#text").load("smith_janis.txt");
});
我不完全知道如何做到這一點,有人可以幫我嗎?提前致謝。
所以如果你有幾個元素的名稱類會變量更新每次不同的被點擊? – loriensleafs
是的,這是關於將事件處理程序附加到類的好東西。 – f0x