我想將窗體上的所有文本框邊框顏色設置爲紅色。我試着用設置窗體上文本框的邊框顏色
$('*').css('border', 'black');
也
var all = document.getElementsByTagName('*');
for(var i=0;i<all.length;i++)
{
all[i].style.backgroundColor = "Red";
}
沒有什麼工作對我來說。 在CSS文件中的所有文本框
input[type=text], .htmlplusinput {
border: 1px solid #C79988;
padding:1px;
width:120px;
cursor: text;
}
input[type=text]:focus, .htmlplusinput:focus {
border:2px solid #25a3fc;
padding:0px;
}
你是否試圖動態改變它們,或永遠讓它們變成紅色? – ChiefTwoPencils 2012-07-29 21:00:02
你的選擇是錯誤的。 – 2012-07-29 21:04:36
我想動態改變 – Judy 2012-07-29 22:29:51