<div id="right-side-panel">
<span>UserName:<br />
<input id="txtUserName" type="text" />
</span>
<br />
<span>Password:<br />
<input id="txtPassword" type="password" />
</span>
<br />
<input id="btnLogin" type="button" value="Login" />
</div>
如何从css文件中获取此txtUserName?我想改变textBox的东西。
#right-side-panel
..那么?
提前致谢
答案 0 :(得分:1)
W3C将ID定义为“元素的唯一标识符”,因此您需要#txtUserName
才能匹配<input>
。
答案 1 :(得分:0)
为什么你不能这样做:input#txtUserName?
答案 2 :(得分:0)
例如:
在css
#txtUserName {
color:black;
}
在jQuery中
$('#txtUserName').css('color', 'black');