2013-08-30 171 views
0

我注入了一些html作爲一個選項卡,並想知道,我是否需要把相關的腳本標籤放在我注入的html內部,或者在主html中。<script>標籤內的標籤

例如

<html> 
    <head> 
     <!-- would my tab specific script go here?--> 
    </head> 

    <!--html being injected as a tab--> 
    <div> 
     <!--got from an external html file--> 
     <html> 
      <head> 
       <!-- or here?--> 
      </head> 
     </hmtl> 
    </div> 
</html> 
+0

這取決於腳本的功能。 – JJJ

+0

它是jQuery,初始化日期選擇器對象 – Zack

+0

裏面的標籤html,我有 Zack

回答

-1

如果它是一個小的腳本,我會把它的主要文件內。如果您需要在主文檔之後加載JS,因爲它很大且很少使用,您可以嘗試jQuery.getScript()。

http://api.jquery.com/jQuery.getScript/

+0

爲什麼downvote? – Vlad