3
我有皮膚的DNN。我的頭標記已RUNAT =「服務器」,所以我試圖在代碼中加入代碼的head標籤內爲這樣是否適合異步並推遲語法爲async =「async」?
<script async defer src="https://maps.googleapis.com/maps/api/js?key=<%#GoogleAPIkey%>"></script>
後面我設置的屬性VAR GoogleAPIkey。 問題是它沒有加載該值。
我然後試圖在代碼添加腳本標籤的後面,因爲這
HtmlGenericControl jqueryInclude = new HtmlGenericControl("script");
jqueryInclude.Attributes.Add("type", "text/javascript");
jqueryInclude.Attributes.Add("async", "async");
jqueryInclude.Attributes.Add("defer", "defer");
jqueryInclude.Attributes.Add("src", "https://maps.googleapis.com/maps/api/js?key=" + GoogleAPIkey);
這種方法輸出標籤作爲
<script async="async" defer="defer" src="https://maps.googleapis.com/maps/api/js?key=xxx"></script>
被此有效的語法或我需要persue的一種不同的方法寫出來 - 或者甚至將它從頭標籤中移出。
我相信,不是100%確定,XHTML要求屬性始終有一個值,這意味着您需要使用'async = async'來滿足驗證器。無論如何,它不會傷害'正常'的HTML驗證器/瀏覽器,因爲它們只會忽略屬性存在的價值和工作(正如Mike C指出的那樣) –