51,396
社区成员




$(document).ready(function () {
var hello = "test";
$("#888").on("DOMSubtreeModified", function (event) {
$("#123").trigger('click');
}
);
$("#change").click(function () {
$("#888 li").first().text("change to " + Math.random());
});
});