LoginSignup
2
0

More than 5 years have passed since last update.

jQuery's note

Last updated at Posted at 2018-05-14

jQueryやtransit.jsを'$','jQuery'以外の変数に閉じ込める

コード1行目の

(function(root, factory) { if (typeof define === 'function' && define.amd) { define(['jquery'], factory); } else if (typeof exports === 'object') { module.exports = factory(require('jquery')); } else { factory(root.jQuery); } }(this, function($) {

これ
factory(root.jQuery)
を↓こうで良い
factory(root.xxxxx)

jQueryにはテンプレートエンジンがある

jQueryのバージョン差異によって発生する問題を解決する為のjQueryプラグイン

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0