我正在注入一些html作为选项卡,并且想知道,我是否需要将相关的脚本标记放在我注入的html中,或者在主html中。
例如
<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 :(得分:-1)
如果它是一个小脚本,我会把它放在主文档中。如果您需要在主文档之后加载JS,因为它很大且很少使用,您可以尝试使用jQuery.getScript()。