gpt4 book ai didi

javascript - Chrome : Dynamically created <style> tag does not have content?

转载 作者:行者123 更新时间:2023-11-30 13:40:04 26 4
gpt4 key购买 nike

我在尝试编写跨浏览器脚本时遇到了一个奇怪的问题。基本上我的标题看起来像这样

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>

然后在正文标签中:

<p id="hey">Hey</p>
<input type="button" value="attachStyle" name="attachStyle" onclick="attachStyle();"></input>
<script>
function attachStyle() {
var strVar="";
strVar += "<style type='text\/css'>#hey {border:5px solid red;}<\/script>";
$("head").append(strVar);
}
</script>

该按钮在 Firefox 中有效,但在 Chrome 中无效。当我在开发者工具中查看 html DOM 元素时,插入了样式标签但没有内容,如下所示:

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<style type='text/css'></script>
</head>

我很好奇这是什么原因造成的?以及如何以跨浏览器的方式创建 CSS 样式?谢谢!

最佳答案

<style type='text/css'></script>

您以“style”标签开始,以“script”结束。标签错误! :P

关于javascript - Chrome : Dynamically created &lt;style&gt; tag does not have content?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2764500/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com