我想获取 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");
});
我不确定该怎么做,有人可以帮我吗?提前致谢。