gpt4 book ai didi

javascript - 将表格单元格数据转换为单独的 .js 文件中的内部链接

转载 作者:可可西里 更新时间:2023-11-01 13:31:45 26 4
gpt4 key购买 nike

有一个小项目的问题,过去 3 天我一直被困...我必须在单独的 js 文件中使用 javascript 和 jquery 将 html 文件中表格左列上的数据单元格转换为链接(将针对其他 html 文件)。 由于问题的限制,我无法编辑 html 文件

最佳答案

希望我正确理解了您的问题。您可以使用选择器 .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
});

示例:http://jsfiddle.net/7fawbkck/2/

关于javascript - 将表格单元格数据转换为单独的 .js 文件中的内部链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28339805/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com