0
我有2個按鈕,只需單擊第一個按鈕,我想從列表框中獲取值以檢索到文本框。 並單擊第二個按鈕,文本框中的值應該清除。Jquery無法將值提取到文本框中
這是我如何嘗試實施的代碼,但它不工作。
<script type="text/javascript">
$(document).ready(function() {
$('#<%=BtnAddTokenValue.ClientID%>').click(function{
var Value=$('#<%=ListBoxOptionValues.ClientID%>').find(':selected').val();
$('#<%=TextBoxNameValue.ClientID%>').val(Value);
});
});
$(document).ready(function() {
$('#<%=BtnRemoveTokenValue.ClientID%>').click(function(){
$('#<%=TextBoxNameValue.ClientID%>').val("");
});
});
</script>
<table border="0" cellpadding="5" cellspacing="0" style="width: 100%">
<tr>
<td class="style3">
<asp:Button ID="BtnAddTokenValue" runat="server" Text=">" />
</td>
<td class="style2">
<asp:TextBox ID="TextBoxNameValue" runat="server" Width="187px"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style3">
<asp:Button ID="BtnRemoveTokenValue" runat="server" Text="<" />
</td>
</tr></table>
感謝任何assistence
是啊,先生,我失蹤那。它現在有效。 –
太棒了!這對你有幫助。 – Jai