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,我需要$.getJSON在 jQuery 中淡入新项目。
$.getJSON
我希望得到帮助。:)
$("#wall_msg").clone(true) .attr("id", "newid") .hide() .insertAfter("#wall_msg") .fadeIn();