我用html写的,
<asp:TextBox ID="txtComment" runat="server" onkeyup="loadValues(this,250)" MaxLength="250"></asp:TextBox>
但Chrome浏览器显示
<input name="BirthdayWish1$txtComment" type="text" maxlength="250"
id="BirthdayWish1_txtComment" onkeyup="loadValues(this,250)">
#shadow-root(user-agent)
<div id="inner-editor"></div>
</input>我想删除这个#shadow-root(user-agent),因为输入字段显示绿色的颜色段。
发布于 2014-10-16 10:28:45
我发现了错误,这是来自外部css类。我给出了像这样的绿色图像,这就是我的问题所在。
input[type=text],input[type=password],textarea{color:#626262;display:inline-block;background:#FFF url(../images/forminput.gif) top left repeat-x;border-radius:2px;width:100%;border:1px solid #CCC;height:17px;margin:2px 0;padding:2px 1px;}https://stackoverflow.com/questions/26401336
复制相似问题