我正在尝试设置多行文本框的最大长度。我遇到的障碍是我无法在页面加载时使用 javascript 设置它,因为它位于 InsertItemTemplate 中。在页面加载时,它会引发一个 javascript 错误(错误:无法设置未定义或空引用的属性“maxLength”),直到我添加一条记录并显示 InsertItemTemplate。
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<script type="text/javascript">
function onPageLoad() {
var txtAddNotes = document.getElementById("formViewNewItem_NotesTextBox");
txtAddNotes.maxLength = 200;
}
</script>
</head>
<body onload="onPageLoad()">
<asp:FormView ID="formViewNewItem" runat="server" DataKeyNames="ID"
DataSourceID="datasource1" OnDataBound="formViewNewItem_DataBound">
<InsertItemTemplate>
<asp:TextBox ID="NotesTextBox" runat="server" Text='<%# Bind("Notes") %>' TextMode="MultiLine" Rows="3" Width="350px" />
</InsertItemTemplate>
</asp:FormView>
</body>
</html>