Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は問題があります。
私はこのコードを使用します:
$( '#wall_msg').clone( true ).insertAfter( '#wall_msg' );
クローンの ID を設定するにはどうすればよいですか。jQuery で新しいアイテムをフェードインする必要があり$.getJSONます。
$.getJSON
私は助けを願っています。:)
$("#wall_msg").clone(true) .attr("id", "newid") .hide() .insertAfter("#wall_msg") .fadeIn();