如何一次性删除 td 元素的所有属性?

发布于 2024-10-28 21:52:24 字数 92 浏览 2 评论 0原文

如何一次性删除 td 元素的所有属性? 我可以一次使用标签和“删除属性”来使用查找/替换。但我想删除任何元素的所有属性。 Dreamweaver CS4中有这样的选项吗?

How can I remove all attributes of for example td element in one go?
I can use find/replace using tag and "remove attribute" one at a time. But I want to remove all attributes for any element.
Is there any such option in Dreamweaver CS4?

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

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

发布评论

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

评论(2

黑色毁心梦 2024-11-04 21:52:24

您可以在“查找和替换”对话框中尝试以下操作:
查找:

<td[^>]*?>

替换

选中“使用正则表达式”框。首先执行“查找全部”以确保您只找到您想要查找的内容。

注意:这假设您没有任何“>”起始 TD 标签内的字符。如果您碰巧有内联 JavaScript,则可能会发生这种情况,例如:

<td onclick="if(x>y){alert('hi!');}">

但如果您这样做,那么您可以再次进行替换,并且应该在标记的开头获得其余代码。

You can try the following in the Find and Replace dialog:
Find:

<td[^>]*?>

replace

Check the "Use regular expression" box. Do a Find all first to ensure that you're finding only what you want to find.

Note: This assumes that you don't have any ">" characters within the opening TD tag. That could happen if you happen to have inline JavaScript such as:

<td onclick="if(x>y){alert('hi!');}">

But if you do, then you can do your replacement again and that should get the rest of the code in the opening of the tag.

很快妥协 2024-11-04 21:52:24

我正在用这个。

查找

<td( .*)">

替换

<td>

I am using this.

FIND

<td( .*)">

REPLACE

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