我想更改当前 URL 上的 div 样式。
如果我在我的主页上。
div.layout-column.column-main.with-column-1.with-column-2{
width:790;
}
如果我在除主页之外的其他页面上,那么我希望我的课程是这样的。
div.layout-column.column-main.with-column-1.with-column-2{
width:590;
}
我试过了,但我没有得到正确的输出。
if (window.location.href == 'http://easyapuestas.com/')
{
// alert("hiiii");
document.write("<style>" +
"div.layout-column.column-main.with-column-1.with-column-2{" +
" width: 790px;" +
"}" +
"</style>");
}
if (window.location.href !== 'http://easyapuestas.com')
{
// alert(window.location.href);
document.write("<style>" +
"div.layout-column.column-main.with-column-1.with-column-2{" +
" width: 590px;" +
"}" +
"</style>");
}