click ã¤ãã³ãå ã§å¯¾è±¡ã®ã¨ã¬ã¡ã³ããåå¾ãã
使ãæ¹ããã£ã¦ãã®ãåããããã©ãthis ã使ãã¨åããã
<html> <head> <script src="jquery-1.2.6.js" type="text/javascript"></script> <script> function initialize() { $("#msg").click(function() { alert(this.innerHTML); //=> Test }); } </script> </head> <body onload="initialize()"> <span id="msg">Test</span> </body> </html>
ã¯ãã¼ã¸ã£ã§å¤ãæããããå ´åã¯ã©ãããã ã»ã»ã»ã
追è¨ï¼ã¯ãã¼ã¸ã£ã§ãã
ããæ¹ã¯ãã£ãããããããããã ãã¤ã¼ãåããã«ããããªãã»ã»ã»ãã¤ãã«ãã³ã«æ³¨æããªããæ¸ãã¦ããã©ã©ãã«ããªããããããããããç´ããå¾ã« syntax error ã¨ãåºã¦ãã©ããããããªããã
<html> <head> <script src="jquery-1.2.6.js" type="text/javascript"></script> <script> function initialize() { var m = "aaaaa"; $("#msg").click((function(m) { return function() { alert(m);//=> aaaaa } })(m)); } </script> </head> <body onload="initialize()"> <span id="msg">Test</span> </body> </html>