在我的應用程序中,我只是想使用javascript在文本框中提醒值。getElementById在asp.net中不工作
aspx頁面代碼
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
alert("hi");
alert(document.getElementById('<%=textbox1.ClientID%>').value);
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox runat="server" ID="textbox1" Text="asdsad">
</asp:TextBox>
</div>
</form>
</body>
</html>
我只得到警報「嗨」 ..after,我得到一個錯誤「所需的對象」。什麼原因?
將其包裝在document.ready() –
爲什麼我得到了一個投票? ..請評論..因此,我可以改善,在我的下一篇文章 –
@獅子..:).... –