2013-01-23 40 views
0

我有問題要獲取asp server element數據。
這是我的用戶代碼textbox
和我想要獲得其價值的腳本。但它不起作用。
請幫助我。

thnx提前。在javascript中獲取asp服務器元素的錯誤

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server"> 
<div> 
<asp:TextBox ID="txtUserCode" runat="server" Width="78%" Height="35%"></asp:TextBox> 
</div> 
</asp:Content> 

<script type="text/javascript"> 
$(document).ready(function() 
{ 
    $("input[type='text']").change(function() 
     {    
      var textBox = document.getElementById('<%= txtUserCode.ClientID %>'); 
      alert(textBox); 

    }); 
}); 
</script> 
+0

這正是錯誤你得到了什麼?這個腳本位於哪裏(在一個頁面上或在一個母版頁上) –

+0

我得到了這個警報... [object HTMLInputElement] ....我期待我的輸入值。並且該腳本在很多方面與頁面 –

回答

3

使用alert(textBox.value);代替alert(textBox)

+0

相同。有用 :) –

相關問題