要素を青色に変える、この本当にエキサイティングな jQuery プラグインを作成しました。 http://jsfiddle.net/LpCav/
現在ページにない要素に適用したいと考えています。
新しい要素をページに追加した直後に適用するという選択肢があることは理解しています。もう 1 つのオプションは、新しい要素を作成する代わりに、既存の要素の 1 つを複製してページに追加することです。これらのオプションのいずれも実行したくありません。
<li>
代わりに、 on() を使用して、内部の現在または将来の要素に適用できます<ul id="myNewList">
か?
そうでない場合、この動作を実行するようにプラグインを変更できますか?
ありがとう
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<title>Future</title>
<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
<script type="text/javascript">
(function( $ ){
$.fn.makeBlue = function() {
return this.each(function() {
$(this).css('color','blue');
});
};
})( jQuery );
$(function(){
$('.myElement').makeBlue();
$('#add').click(function(){
$('#myNewList').html('<li class="myElement">hello</li>')
});
});
</script>
</head>
<body>
<button id="add">Add</button>
<ul id="myList">
<li class="myElement">hello</li>
<li class="myElement">hello</li>
</ul>
<ul id="myNewList">
</ul>
</body>
</html>