我有一个有趣的问题。当我键入它们时,类和id选择器对我的代码没有影响(文本"我不同"不会变成蓝色),但是当我复制并粘贴相同的时候来自w3schools.com等网站的代码,代码执行。例如,看看这段代码。
<!Doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Page</title>
<style>
p#p01 {
color:blue;
}
</style>
</head>
<body>
<p id=“p01">I am different</p>
</body>
</html>
当我复制语句时,这很好用#34; p id =&#34; p01&#34;和&#34; p#p01&#34;从外部源并将其粘贴到我的Mac上的textEdit中。但是,如果我甚至删除了&#39; p&#39;来自&#34; p01&#34;然后RETYPE IT,文本不再变为蓝色,我必须从外部源重新复制语句。预先感谢您的帮助。
答案 0 :(得分:2)
问题在于opening quote character
:“
它需要是一个常规的双引号字符:&#34;
这是因为textEdit不适合编辑代码。但是你可以解决这个问题。请查看以下链接:https://apple.stackexchange.com/questions/120486/quotes-problem-in-mavericks-or-textedit