在文本框中输入值,实时更新属性值

    科技2022-07-16  109

    @page "/mybinding" <h1>@Title</h1> <p> <span>失去焦点时更新属性值 Title changes when the input box loses focus (onChange).</span> <input type="text" @bind="Title"/> </p> <p> <span>实时更新属性值 Title changes when the input box receives input (onInput).</span> <input type="text" @bind="Title" @bind:event="oninput" /> </p> @code { private string Title { get; set; } = "Data Binding gives you wings!"; }

     

    Processed: 0.009, SQL: 8