<!DOCTYPE html> <html> <head> <title>button</title> <script src="js/libs/jquery-1.9.0/jquery.min.js"></script> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script> jQuery(document).ready( function() { $("#but").click(function(){ alert("ラーメン"); }); }); </script> </head> <body> <input id="but" type="button" value="ボタン" /> </body> </html>