0

请参考此代码,它是我使用 mvc 开发的 Web 应用程序的部分视图。

@model PortalModels.WholeSaleModelUser
    @using (Html.BeginForm("uploadFile", "WholeSaleTrade", FormMethod.Post, new { enctype = "multipart/form-data" }))
    {
        @Html.ValidationSummary(true)

    <fieldset>
        <legend>WholeSaleModelUser</legend>
        <table>
            <tr>
                <td>
                    <div class="editor-label">
                        @Html.LabelFor(model => model.Name)
                    </div>
                </td>
                <td>
                    <div class="editor-field">
                        @Html.TextBoxFor(model => model.Name)
                        @Html.ValidationMessageFor(model => model.Name)
                    </div>
                </td>
            </tr>
</table>
        <div id="partial">
            <table>
                <tr>
                    <td>
                        <img id="blah" src="../../Images/no_image.jpg" alt="your image" height="200px" width="170px" />
                    </td>
                </tr>
</table>

    <script type="text/javascript">
        function loadUserImage() {
            var userImg = document.getElementById("blah");
            var imgNm = $("#Name").value;
            userImg.src = "D:/FEISPortal/FortalApplication/Img/" + imgNm + ".png";
            alert(imgNm);
            alert(userImg.src);
        }
    </script>

我需要使用上面提到的 javascript 代码在部分视图中处理此文本框的textchange事件

@Html.TextBoxFor(model => model.Name)

请有人告诉我如何处理上述文本框代码行的文本更改事件。

4

1 回答 1

0
$document.on('blur', 'TextBox', function(){
    //Do something
});

这种格式应该适用于局部视图上的任何字段。从这里http://api.jquery.com/on/

于 2013-09-30T22:51:06.380 回答