我想将 css 放入我的 javascript 中。我有一个单独的 css 样式表和单独的 javascript 样式表,它们在 index.html 中引用
基本上在我的 jscript 中我有一个
myWin=window.open("","errors","width=550,height=400"); // Pop Up the window
它在其中显示信息,例如
//Error to be displayed
if ()
{
errMessages += " <li>Cannot start with a hyphen (-) or apostrophe (').</li>\n";
errMessages += " <li>ex: O'Brian or Sen-lu</li>\n"
}
我想为弹出窗口背景着色,并为错误应用一种颜色,为示例应用一种颜色。
我试过链接 href='mycss.ss' rel='stylesheet' type='text/css'
在外部 jscript.js 文件中
然后尝试使用
li class='b1' and li class='b2'
(b1 和 b2 具有所需的 css 编码)
但没有结果。
有什么建议么?