我正在開發一個MVC4 web應用程序。一切正常,但在項目結束時,我得到了一個新的要求,我必須在每個dropdownlist旁邊顯示一個加號圖標目前近20頁像。如何使用jquery在dropdownlist旁邊添加圖標按鈕
在項目上面的圖片下拉列表我又增加了圖標manually.But我要與每一個下拉列表出現在完整的項目添加此圖標。點擊這個圖標後,將會彈出一個文本框。用戶將在此輸入新的項目並保存。
頁面的常見結構爲:
<div runat="server" id="divFormLayout" class="formLayout">
<div class="TabSectionL" style="width: 99%">
<span class="TabSectionHeader">Item Details</span>
<table cellpadding="4" cellspacing="4">
<tr>
<td>
Item
</td>
<td>
@if (ViewData["ItemDesc"] != null)
{
@Html.DropDownListFor(m => m.str_itemdsc, (SelectList)(ViewData["ItemDesc"]), "-Select-", new { @class = "validate[required] cairs_item_dropdown", tabindex = "1" })
}
else
{
@Html.DropDownList("str_itemdsc", new SelectList(""), "", new { tabindex = "1" })
}
</td>
</tr>
</table>
</div>
</div>
問題:我如何添加加動態圖標的每個下拉列表旁邊。
一些谷歌搜索給了我這個.. CHK如果ü作品.. http://www.aspdotnet-suresh.com/2011/12/jquery-bind -images-to-dropdownlist-in.html –