我想将表单上的所有文本框边框颜色设置为红色。我尝试使用
$('*').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;
}