且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

将脚本加载到< body>部分

更新时间:2022-11-30 11:18:24

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>