YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* end() [#xca32022]
<!DOCTYPE html>
<html>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"...
<script>
$(function(){
var $li = $('<li><span /></li>');
$li
.find('span')
.html('HELLO')
.end()
.appendTo('#ul');
});
</script>
<body>
<ul id="ul">
</ul>
</body>
</html>
*** 説明 [#t7553ee3]
以下のようにするとspanがulの直下にappendTo()される(liは...
$li
.find('span')
.html('HELLO')
.appendTo('#ul');
終了行:
* end() [#xca32022]
<!DOCTYPE html>
<html>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"...
<script>
$(function(){
var $li = $('<li><span /></li>');
$li
.find('span')
.html('HELLO')
.end()
.appendTo('#ul');
});
</script>
<body>
<ul id="ul">
</ul>
</body>
</html>
*** 説明 [#t7553ee3]
以下のようにするとspanがulの直下にappendTo()される(liは...
$li
.find('span')
.html('HELLO')
.appendTo('#ul');
ページ名: