1
我要訪問的aSubchapter
JavaScript文件中,我應該要做找到隱藏文件的代碼動態創建的元素?(本頁內容是頁)如何通過使用JavaScript
.cs文件
protected void page_load()
{
HtmlGenericControl aSubchapter=new HtmlGenericControl("a");
aSubchapter.Attributes.Add("href","somevalue");
aSubchapter.ID="subchapter";
}
在.aspx文件
<script type="text/javascript">
var subchap=document.getElementById('<%=subchapter.ClientID%>');
//(The above lines says that subchap is undefined)
</script>
嘗試使用'的document.getElementById(「小節」)''因爲'是不是服務器控件 –
甚至我試過,但它說不確定 –
並控制被頁面呈現?嘗試執行你的代碼後加載'document.onload = function(){/ *運行代碼在這裏* /}' –