伙计我正在生成一系列文本框,旁边有一个按钮(在li标签中)
<div class="col-md-10">
<ul id="sortable" style="list-style-type: none; padding-left: 0;">
@for (int i = 0; i < Model.BulletPoints.Count(); i++)
{
<li class="ui-state-default" style="margin-bottom: 8px;"><span>@Html.TextBoxFor(m => m.BulletPoints[i], new { @maxlength = "200", @class = "form-control", @style = "width: 825px;max-width: 90%;" }) <div style="width: 70px; max-width: 10%; margin-top: -30px; float: right;"><span class="ui-icon ui-icon-arrowthick-2-n-s" style="margin-top: 4px; float: left;"></span> <input type="button" style="float: right;" value="X" onclick="SubmitForm('deletebullet')" /></div></span></li>
}
</ul>
</div>
注意BulletPoints在模型中为public List<string> BulletPoints { get; set; }
。
但是现在我必须通过点击旁边的按钮删除这些文本框中的任何一个。
有关如何实现这一点的任何帮助吗?