我有图...
<img src="images/dut7_thumb.jpg" alt="images/dut7.jpg" filetoload="test.html"/>
我正在尝试使用...将文件“test.html”加载到 id 为“words”的 div 中...
$list.find('.st_thumbs img').on('click',function(){
var $this = $(this);
$("#words").load("text/"+$this.attr('filetoload'));
});
...但 filetoload 未定义?
如何获取该文件名?
编辑:代码在错误的地方。现在工作正常。