欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

動態(tài)加載Js代碼到Head標(biāo)簽中的腳本

 更新時間:2009年01月21日 23:38:04   作者:  
我遇到了這樣的問題,請教google,結(jié)果大多數(shù)只是介紹那個注冊js的幾個函數(shù),而這幾個函數(shù)插入的js都在body里面,幸而在老外那里看到了這個代碼,其實(shí)比較簡單,但夠有用
復(fù)制代碼 代碼如下:

HtmlGenericControl Include2 = new HtmlGenericControl("script");
Include2.Attributes.Add("type", "text/javascript");
Include2.InnerHtml = "alert('JavaScript in Page Header');";
this.Page.Header.Controls.Add(Include2);

注, 或使用:
復(fù)制代碼 代碼如下:

Literal li = new Literal();
li.Text = "<script...</script>";
this.Page.Header.Controls.Add(li);

相關(guān)文章

最新評論