油猴脚本

发布于 2024-07-29 21:58:13 字数 751 浏览 6 评论 0原文

所以我有这个带有 html 代码的页面,我希望greasemonkey 将其替换为我拥有的另一个 HTML 代码。 如何做呢 ?

例如我有

<html>
<body>

<h1>Cajuda</h1>

<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Lagarta maritima</p>
</body>
</html> 

并且我想对此进行改造:

    <html>
<body>
<td title="7885" nowrap="nowrap">Ovar</td>
<td>&nbsp;</td>
<td title="Online" align="center" bgcolor="#ff8288">H</td>
<td title="Offline" align="center" bgcolor="#88ff88">1</td>
<td>&nbsp;</td>

</body>
</html> 

So I have this page with the html code and I want greasemonkey to replace it by another HTML code that I have. How can it be done ?

exemple I have

<html>
<body>

<h1>Cajuda</h1>

<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Lagarta maritima</p>
</body>
</html> 

and I want to transform in this :

    <html>
<body>
<td title="7885" nowrap="nowrap">Ovar</td>
<td> </td>
<td title="Online" align="center" bgcolor="#ff8288">H</td>
<td title="Offline" align="center" bgcolor="#88ff88">1</td>
<td> </td>

</body>
</html> 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独木成林 2024-08-05 21:58:14

来自 greasemonkey 手册

var theImage, altText;
theImage = document.getElementById('annoyingsmily');
if (theImage) {
    altText = document.createTextNode(theImage.alt);
    theImage.parentNode.replaceChild(altText, theImage);
}

其余部分可用 此处

From the greasemonkey manual:

var theImage, altText;
theImage = document.getElementById('annoyingsmily');
if (theImage) {
    altText = document.createTextNode(theImage.alt);
    theImage.parentNode.replaceChild(altText, theImage);
}

The rest is available here.

八巷 2024-08-05 21:58:14

Here's a link to tutorials on How to write Greasemonkey scripts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文