我想從後面的ASP.net頁面代碼訪問javascript文檔。如何在後面的c#代碼中執行以下相同的操作?在asp.net代碼中訪問javascript文檔
document.getElementById(id).src = "myurl.com"
謝謝你的幫助。
我想從後面的ASP.net頁面代碼訪問javascript文檔。如何在後面的c#代碼中執行以下相同的操作?在asp.net代碼中訪問javascript文檔
document.getElementById(id).src = "myurl.com"
謝謝你的幫助。
將runat =「server」和一個ID添加到元素中。然後您應該可以通過屬性集合訪問src。
<img src="http://www.google.com/img.png" id="imgGoogle" runat="server" />
Dim src as String = imgGoogle.Attributes("src")
使用Page.ClientScript.PageClient.RegisterStartupScript – MMK
注意@Tony你要求獲得的隨機DIV /板/等,沒有得到「訪問」給它的'src' URL(我甚至確定這意味着什麼) –