最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - Multiple external JavaScript files using one script tag - Stack Overflow

programmeradmin1浏览0评论

I have seen on some websites they have one script tag but call multiple JS file e.g. <script src="script1.js,script2.js,script3.js"></script>

How do I do this? (Looking for both PHP and ASP.NET)

I have done a search on Google but struggled to find anything relevant.

Thanks

I have seen on some websites they have one script tag but call multiple JS file e.g. <script src="script1.js,script2.js,script3.js"></script>

How do I do this? (Looking for both PHP and ASP.NET)

I have done a search on Google but struggled to find anything relevant.

Thanks

Share Improve this question asked Jun 6, 2011 at 15:30 CameronCameron 28.9k102 gold badges289 silver badges490 bronze badges 2
  • 1 Any particular reason why you want to do that? – Tomalak Commented Jun 6, 2011 at 15:32
  • Maybe this might help stackoverflow./questions/4878571/… – Saif Khan Commented Jun 6, 2011 at 15:34
Add a ment  | 

3 Answers 3

Reset to default 6

You need to write a server-side script that parses the script names from the URL or query string, and sends a single response with the contents of all of the scripts.

Make sure to validate the script names to prevent attackers from reading arbitrary files.

That loads a single JS file. The URLs just has multiple things that look like filenames in it.

There is a strong probability that the single JS file is built from multiple files by a server side script. If so, that is just a simple matter of…

  1. parsing the filenames from the URL (split on mas)
  2. sanity checking them
  3. concatenating the files into the response

(and giving it a suitable Content-Type header).

It is inefficient to do that for every hit though, so make sure you implement sane caching. Both with HTTP response headers and on your server.

I use:

http://rakaz.nl/code/bine

Just set up something in your .htaccess that points requests to js and css to this file. It handles caching etc

发布评论

评论列表(0)

  1. 暂无评论