将脚本加载到< body>部分 [英] Loading a script in the <body> section

查看:70
本文介绍了将脚本加载到< body>部分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个特定页面的javascript,我不希望在其标题部分中加载该javascript.是否可以将其加载到HTML部分中.

当前,我将所有js代码都包含在其中,但我想将其删除到一个我可以加载的单独的js文件中.

我尝试使用它,但是没有用.

<script type="text/javascript" src="<?php echo base_url();?>js/jquery-1.5.1.min.js"></script>

谢谢

解决方案

Q1 :我有一个特定页面的javascript,我不希望在其标题部分中加载该javascript.是否可以将其加载到HTML部分中.

-是的,您可以在任意位置加载javascript,如果编写内联代码,请确保在代码周围添加脚本标签.

-您也可以请求正文中的文件

第二季度:目前,我将所有js代码都包含在其中,但我想将其删除到一个我可以加载的单独的js文件中.

-没问题,那是更好的做法.

第3季度请求外部文件

请求以书面形式编写的外部文件

<script src="http://file_name.js" type="text/javascript"></script>

I have a javascript for a specific page that I do not wish to be loaded in my header section. Is it possible to load it in the section of the HTML.

Currently I have all my js code inside the but I want to remove it to a seperate js file that I can load.

I tried using this but it did not work.

<script type="text/javascript" src="<?php echo base_url();?>js/jquery-1.5.1.min.js"></script>

Thanks

解决方案

Q1 : I have a javascript for a specific page that I do not wish to be loaded in my header section. Is it possible to load it in the section of the HTML.

-Yes you can load javascript any where you want, if writing inline code then make sure you add script tag around your code.

-also you can request files like in body

Q2: Currently I have all my js code inside the but I want to remove it to a seperate js file that I can load.

-- no problem in that, thats even better practice.

Q3 Requesting external file

to request external files you write below written fashion

<script src="http://file_name.js" type="text/javascript"></script>

这篇关于将脚本加载到&lt; body&gt;部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆