对于一个小项目有问题而且我在过去的3天里一直被困住了...... 我必须使用javascript& amp;将html文件中表格的左列上的数据单元转换为链接(将定位其他html文件)。 jquery在一个单独的js文件中。 由于对问题的限制,我无法编辑html文件 。
答案 0 :(得分:2)
我希望我能正确理解你的问题。您可以使用选择器.code
访问单元格,然后使用append()
在其中放置链接,如下所示:
$(".code").each(function(i){ //find the right cells and for each one...
var text = $(this).text(); //...read the contents...
text = text.substring(3); //...remove the first 3 letters...
$(this).text(""); //...remove the text...
$(this).append("<a href='"+text+".html'>"+text+"</a>"); //...and replace with a link
});