0

想與平變化功能在下拉列表我的代碼是這樣的添加樣式: -如何在Dropdownlist中爲mvc中的助手添加樣式?

@Html.DropDownListFor(m=>m.printEmployeeCardDTO.DataCardConnectionType,null,new { @onchange="_printEmployeeCard.GetPrintersDetail(this.value, printersList);" },new { style = "width: 100px;" } ) 

我爲得到錯誤在此。任何人都可以幫助我嗎?

+0

你得到什麼錯誤?請編輯它到你的問題。 –

回答

2

你使用兩種不同的參數new { },而不是隻有一個由,

@Html.DropDownListFor(
    m => m.printEmployeeCardDTO.DataCardConnectionType, 
    null, 
    new { @onchange="_printEmployeeCard.GetPrintersDetail(this.value, printersList);", style = "width: 100px;" } 
) 
0

使用分離@標誌的樣式屬性,就像這樣:

@style = "width: 100px;" 
相關問題