在不同的DropDownList中選擇一個項目後,我想用DropdownList更改頁面上的文本框(發生的變化是bool是真的,除此之外)。JQuery用DropDownList替換文本框
$('#InvoiceNumber').replaceWith($(@Html.DropDownList("CategoryId", new SelectList(Model.Categories, "Value", "Text"), "Choose a category")));
但出現以下錯誤:
Uncaught SyntaxError: Unexpected identifier
這是爲什麼出現?
它會導致錯誤becasue replacewith用繩子工作我試圖插入HTML代碼。 – justauser