私はIE10で動作させようとしているこのJavaScriptコードを少し持っています。jquery を使用して styleSheet とルールを参照し、それらを初期化しようとしています。役に立たなかった。コードは次のとおりです。
function SetBold(Item, bold)
{
var aitemstyle = document.all.item(Item).style;
if (aitemstyle)
{
if (bold)
{
aitemstyle.fontWeight = "bold";
aitemstyle.color = "black";
aitemstyle.textDecoration = "none";
}
//this else block of code causes function-expected error IE10 windows 8, oRule var initialization
else
{
var oRule=document.styleSheets("panoramaCSS").rules("12pxHoverColorChange");
//IE10 expected function from previous line. So, for loop below for finding 12pxHovercolorChange rule
//inside panoramaCSS styleSheet
//TODO make the selections off Panel Performance go unbold. Not working yet.
}
}
}