正确答案:<script type="text/javascript">
$(".red,.green").html("hi,我们的样子很美哦!");
</script>
$(".red,.green").html("hi,我们的样子很美哦!");
</script>
2014-12-21
正确答案:<script type="text/javascript">
var $redHTML = $(".red").html();
$(".green").html($redHTML);
</script>
var $redHTML = $(".red").html();
$(".green").html($redHTML);
</script>
2014-12-21
正确答案:<script type="text/javascript">
$("#default").html($("#divtest").html());
</script>
$("#default").html($("#divtest").html());
</script>
2014-12-21
$("#html").html($content);
$("#text").html($content);
$("#text").html($content);
2014-12-20
$("#btntest").bind("click mouseout", function () {
$(this).attr("disabled", "true");
$(this).attr("disabled", "true");
2014-12-19
$(document).ready(function()) {
$("#btntest").bind("click", function () {
$("#tip").html("我被点击了!");
$("#btntest").bind("click", function () {
$("#tip").html("我被点击了!");
2014-12-19
$("span").each(function (index) {
if (index == 1) {
$(this).attr("class", "red");
if (index == 1) {
$(this).attr("class", "red");
2014-12-19
$(".red").wrapInner("<i></i>");
2014-12-19