无法在 IE 中隐藏 div 或 span 内的脚本

发布于 2024-11-28 09:06:00 字数 461 浏览 0 评论 0原文

我有一个 span/div 标签,我尝试在其中隐藏脚本

var wr2 = '<span id="span_id" style="display:none;position:relative"><SCRIPT LANGUAGE="JavaScript" SRC="http://www.some_server.com?a=3&d=5"></SCRIPT></span>';

然后在我的脚本中使用(将代码写在页面顶部):

document.write(wr2);

无论我做什么,它总是显示脚本,即使它被隐藏的 div 包裹。 我想在另一个功能上控制它,但默认情况下将其隐藏。

  1. 我无法使用 jQuery。
  2. Chrome 和 Firefox 可以正常使用此代码

I have a span/div tag which I try to hide a script inside

var wr2 = '<span id="span_id" style="display:none;position:relative"><SCRIPT LANGUAGE="JavaScript" SRC="http://www.some_server.com?a=3&d=5"></SCRIPT></span>';

Then in my script I use (to write the code top the page):

document.write(wr2);

No matter what I do it always shows the script even if it is wrapped by a hidden div.
I would like to control that on another function but by default to have it hidden.

  1. I cannot use jQuery.
  2. Chrome and Firefox are working ok with this code

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

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

发布评论

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

评论(2

如果将脚本元素放在 html 页面的部分中,它们将不会显示在页面上,但如果用户查看页面源代码,它们将可见。此外,默认情况下不显示该标签。无需将其放入隐藏标签中。

这是一个简单的 JS Fiddle 来演示这一点。

If you put your script elements in the section of the html page, they will not display on the page, but will be visible if the user views page source. Also, the tag does not display, by default. There is no need to put it in a hidden tag.

Here is a simple JS Fiddle to demonstrate this.

妥活 2024-12-05 09:06:00

正如其他人指出的那样,隐藏脚本似乎是一种气味。

但是,如果您在执行 document.write 时谈论的是以 HTML 形式显示的 script 标记,请使用以下内容:

document.write('<scr' + 'ipt src="http://www.some_server.com?a=3&d=5" type="text/javascript">' + '</scr' + 'ipt>');  

您不需要 span 不再隐藏它。

As others have pointed out, hiding the script seems like a smell.

However, if you're talking about script tags appearing as HTML when you do document.write, use this:

document.write('<scr' + 'ipt src="http://www.some_server.com?a=3&d=5" type="text/javascript">' + '</scr' + 'ipt>');  

You won't need the span to hide it anymore.

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