我想使用 java 或 jquery 在页面加载时从我的 html 中删除以下 2 个代码......
重要提示:我只想删除这 2 行 - 不想删除与之关联的内容。
<div id="left" style="width: 676px;">
<table id="mainpage" style="width: 100%; text-align: center;" cellspacing="0">
这是指向我的主代码的链接,该代码也包含上述字符串,在此链接上查看代码
您可以使用:
$("#mainpage, #left").remove();
或
$("#mainpage").attr('style', '');
$("#left").attr('style', '');
或
var htmlInMainPage = $("#mainpage").html().remove();
$('table').append(htmlInMainPage);
或者更好地解释你的问题。
如果你知道元素类或 ID,你可以使用
display:none
如果您知道父元素中的元素顺序,例如第三个 .btn
.btn-nth-of-type(3) {display:none}