我有一个 javascript 标头<script type="text/javascript" src="http://example.com?Key=">
这Key
是在 aspx.cs 中,例如string Key="123456";
如何将此Key
值绑定到 javascript 标头?
问问题
1091 次
3 回答
1
您可以访问 aspx 文件中变量背后的代码:
<script type="text/javascript" src="http://example.com?Key=<%= Key %>">
于 2013-07-05T14:55:04.937 回答
1
后面的代码:
public Key { get; set; }
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
Key = "123456";
}
}
标记:
<script type="text/javascript" src="http://example.com?Key=<%= Key %>">
</script>
于 2013-07-05T15:12:47.900 回答
0
试试这个方法:
1-通过添加 id 和 runat="server" 属性使您的脚本可通过代码隐藏引用:
<script id="myScript" runat="server" type="text/javascript">
2-in 代码隐藏,在 page_load 上,动态添加 src 属性:
this.myScript.Attributes.Add("src","http://example.com?Key=" + Key);
你完成了!
于 2013-07-05T15:09:36.753 回答