它们在网页上看起来都看起来很相似,但每个HTML的HTML都差别很大:
<input id="TEST" name="TEST" type="text" value="this one's filled in, but editor isn't">
<input class="text-box single-line" id="TEST" name="TEST" type="text" value="">
docs为Html.Editor说明Returns an HTML input element for each property in the object that is represented by the expression.
虽然Html.TextBox说Returns a text input element by using the specified HTML helper and the name of the form field.
这是否意味着您将模型的字符串名称传递给Html.Editor
,然后它将为每个属性创建一个文本输入,而Html.TextBox
'll只是一个没有任何内容的愚蠢文本输入在幕后呢?
答案 0 :(得分:8)
<强> HTML.Textbox:强>
使用指定的HTML帮助程序和表单字段的名称返回文本输入元素。
<强> HTML.Editor:强>
此方法根据正在呈现的属性的数据类型以及是否使用某些属性标记属性来生成不同的HTML标记。
如果属性类型为基本类型(整数,字符串等),则该方法会为文本框呈现HTML输入元素。
如果属性标记有data-type属性或UIHintAttribute属性,则该属性指定为该属性生成的标记。例如,如果属性标有MultilineText属性,则该方法会为多行文本框生成标记。