改变<身体>ContentPage 中带有 Javascript 的 ID身体>
我想在一个网站上进行短期黑客攻击。该站点是一个带有母版页的 ASP.NET 站点。 body 标签位于母版页中。我想指定各个内容页面的正文标记中应包含哪个 ID。我不知道的是,当你的 JS 位于 body 标签内时,你是否可以对 body 标签进行这种类型的访问。由于各种原因,我想尝试在 JS 而不是 .NET 中完成此任务。
有什么建议吗?
为了清楚起见,重新表述一下:
我想使用 JavaScript 从网站的 body 标记内指定 body ID。例如:
<body id="MyID">
JS to change MyID to another name
</body>
I'm looking to do a short term hack on a site. The site is a ASP.NET site with a master page. The body tag is in the master page. I'd like to specify which ID should be in the body tag from within various content pages. What I don't know is if you can have this type of access to the body tag when your JS is within the body tag. For various reasons, I'd like to try to accomplish this in JS, not .NET.
Any tips?
Rephrasing for clarity:
I would like to use JavaScript to specify a body ID from within the body tag of a site. For example:
<body id="MyID">
JS to change MyID to another name
</body>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其放入任何 ContentPage 的 Page_Load 中...
Put this in the Page_Load of any ContentPage...