我有两张桌子。脚本应该从第一个表获得每个值/内容并且放置到第二个表的相应的第二个表。请帮忙。
RewriteEngine on
RewriteRule ^(\w+)$ index.php?page=$1 [L,NC,QSA]
RewriteRule ^(\w+)+\/$ index.php?page=$1 [L,NC,QSA]
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
答案 0 :(得分:3)
您可以使用index
来定位具有.eq()
方法的特定th
元素
$("#mytable th").each(function(index) {
var cellText = $(this).html();
$(".demo th").eq(index).text(cellText);
});