Created
September 28, 2013 06:32
-
-
Save akira1908jp/6739128 to your computer and use it in GitHub Desktop.
jqueryのdelegateサンプル
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>delegate demo</title> | |
<style> | |
p { | |
background: yellow; | |
font-weight: bold; | |
cursor: pointer; | |
padding: 5px; | |
} | |
p.over { | |
background: #ccc; | |
} | |
span { | |
color: red; | |
} | |
</style> | |
<script src="http://code.jquery.com/jquery-1.9.1.js"></script> | |
</head> | |
<body> | |
<p>Click me!</p> | |
<span></span> | |
<script> | |
$( "body" ).delegate( "p", "click", function() { | |
$( this ).after( "<p>Another paragraph!</p>" ); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment