<tr>
<td align="right"><label class="Validform_label">回复内容:</label></td>
<td class="value"><input class="inputxt" id="replyContent" name="replyContent" value="${opinioninfo.replyContent}" datatype="*"><span class="Validform_checktip"></span></td>
</tr>
<div style="overflow:hidden;width:150px;text-overflow:ellipsis;white-space:nowrap" title="">
<input class="inputxt" id="replyContent" name="replyContent" value="${opinioninfo.replyContent}" datatype="*"><span class="Validform_checktip"></span>
</div>
input是用来输入的。。。变成...了,要怎么修改。
这只是查看功能,不需要输入修改
不太明白你的意思,不过input可以限制输入长度,或者读取长度,用js判断,超过某一个长度就将剩下的变成……
<tr>
<td align="right"><label class="Validform_label">回复内容:</label></td>
<td class="value">
<input style="width: 150px; height: 30px; text-overflow: ellipsis;white-space: nowrap;overflow: hidden; " value="${opinioninfo.replyContent}"><span class="Validform_checktip"></span>
</td>
</tr>