0

我正在尝试从后面的 ASP.net 页面代码访问 javascript 文档。如何在后面的 c# 代码中执行与以下相同的操作?

document.getElementById(id).src = "myurl.com"

谢谢您的帮助。

4

1 回答 1

1

将 runat="server" 和 ID 添加到元素。然后,您应该能够通过属性集合访问 src。

<img src="http://www.google.com/img.png" id="imgGoogle" runat="server" />

Dim src as String = imgGoogle.Attributes("src")
于 2012-11-07T16:13:25.347 回答