Created
June 12, 2012 16:42
-
-
Save a-yasui/2918627 to your computer and use it in GitHub Desktop.
mogeta
This file contains hidden or 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
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title></title> | |
| <link href="style.css" rel="stylesheet" type="text/css"> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
| </head> | |
| <body> | |
| test1 | |
| <div id="test"></div> | |
| </body> | |
| <script><!-- | |
| $(function(){ | |
| var tes = $("<div><p class='more'></div>"); | |
| $('.more', tes).html("<span style='color:red;'>abc</span>"); | |
| console.log("test: " + tes.html()); | |
| $("#test").html(tes); | |
| }); | |
| //--></script> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment