- 作成日: 2013/12/18
- 作者: 小川 雄大
下記のサイトを参考にしています:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Bingo!</title> | |
<link rel="stylesheet" href="./css/bootstrap.css"> | |
<style> | |
body { | |
padding-top: 100px; | |
} |
/* | |
* required jQuery | |
*/ | |
;(function($){ | |
/* jQuery plugin template */ | |
var plugname = "your_plugin_name"; | |
$.fn[plugname] = function(method) { | |
if ( methods[method] ) { | |
return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 )); | |
} else if ( typeof method === 'object' || ! method ) { |
下記のサイトを参考にしています: