Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「例」のような値を保持するテキスト。このテキストを jQuery を使用して空のドロップダウンに追加し、ドロップダウンを無効にする必要があります。
これは機能していません -$('#<%=ddlexm.ClientID %>').text("Example")
$('#<%=ddlexm.ClientID %>').text("Example")
私を助けてくれる人は誰でも
あなたはこのようにそれを行うことができます
$('#<%=ddlPO.ClientID %>').append($("<option></option>").val($('#<%=YourTextBoxId.ClientID %>').val()).html($('#<%=YourTextBoxId.ClientID %>').val()).prop('disabled', true);