我有一个输入文本是这样的:
<div class="editor-label">
@Html.LabelFor(model => model.EmployeeId, "Employee Number")
</div>
<div class="editor-field textBoxEmployeeNumber">
@Html.EditorFor(model => model.EmployeeId)
@Html.ValidationMessageFor(model => model.EmployeeId)
</div>
生成以下html
< div class = " editor-label”>
<label for="EmployeeId">员工号</label> .
< / div >
<div class="editor-field textBoxEmployeeNumber">
<input class="text-box single-line" data-val="true" data-val-number="The field EmployeeId must be a number." data-val-required="The EmployeeId field is required." id="EmployeeId" name="EmployeeId" type="text" value="" /> .
<span class="field-validation-valid" data-valmsg-for="EmployeeId" data-valmsg-replace="true"></span> .
< / div >
我想用jquery设置这个输入文本的值,所以我这样做:
<script type="text/javascript" language="javascript">
$(function() {
$('.textBoxEmployeeNumber').val("fgg");
});
</script>
然而,它并没有起作用…我的语法有什么错误?
这里是文件上传的另一个变体,它有一个比默认的文件上传浏览按钮更好看的引导按钮。这是html:
<div class="form-group">
@Html.LabelFor(model => model.FileName, htmlAttributes: new { @class = "col-md-2 control-label" })
<div class="col-md-1 btn btn-sn btn-primary" id="browseButton" onclick="$(this).parent().find('input[type=file]').click();">browse</div>
<div class="col-md-7">
<input id="fileSpace" name="uploaded_file" type="file" style="display: none;"> @*style="display: none;"*@
@Html.EditorFor(model => model.FileName, new { htmlAttributes = new { @class = "form-control", @id = "modelField"} })
@Html.ValidationMessageFor(model => model.FileName, "", new { @class = "text-danger" })
</div>
</div>
以下是剧本:
$('#fileSpace').on("change", function () {
$("#modelField").val($('input[name="uploaded_file"]').val());
您的选择器正在检索文本框的周围<div class='textBoxEmployeeNumber'>,而不是其中的输入。
// Access the input inside the div with this selector:
$(function () {
$('.textBoxEmployeeNumber input').val("fgg");
});
看到输出HTML后更新
如果ASP。NET代码可靠地输出带有id属性id='EmployeeId'的HTML <input>,您可以更简单地使用:
$(function () {
$('#EmployeeId').val("fgg");
});
如果失败,您将需要在浏览器的错误控制台中验证是否有其他脚本错误导致此失败。上面的第一个示例在本演示中可以正常工作。