»
Tiếng AnhTiếng PhápTiếng Việt

In - Nạp JavaScript - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Thủ thuật » Nạp JavaScript
URL: https://www.javascriptbank.com/javascript-includes.html

Nạp JavaScript © JavaScriptBank.comKhi sử dụng Prototype, Scriptaculous và các thư viện JavaScript JavaScript khác, bạn thường phải dùng khá nhiều đoạn mã JavaScript để nạp các tập tin này từ nhiều nơi khác nhau; nhưng nếu dùng đoạn mã JavaScript này, bạn sẽ tiết kiệm rất nhiều công sức. Dùng mã này còn giúp bạn đơn giản hơn trong việc thêm/bỏ một thư viện JavaScript nào đó.

Phiên bản đầy đủ: jsB@nk » Thủ thuật » Nạp JavaScript
URL: https://www.javascriptbank.com/javascript-includes.html



JavaScript
<script type="text/javascript">// Created by: J Wynia. | http://www.wynia.org/ */// Change the domain and path below to match where your scripts are kept.$js_path = "http://www.yourPath.com/js/";function js_include($script){  var script = document.createElement('script');  script.src = $js_path + $script;  script.type = 'text/javascript';  var head = document.getElementsByTagName('head').item(0);  head.appendChild(script);}// Enter the script files herejs_include("prototype.js");js_include("scriptaculous.js");</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->