Jquery:单击后更改ID

时间:2010-06-09 18:59:01

标签: jquery selector

  

可能重复:
  dynamically changing the selector text

我早上发布了这个,但帖子已经消失了?我有下面的代码。我点击后尝试让jquery更改实际ID。它只是脚本中的一小部分杂务之一。这一切都有效,除了更改ID。在这里有这条线使它不起作用...因为这不起作用!这是代码:

$(document).ready(function(){
    $('#portfolio').fadeTo(500,0.25);
 $('#account')
 .animate({width:"10.1875em",height:"11.1875em",duration:'medium'});

$('#next2_btn').click(function(){
    $('#content').fadeTo(300, 0.0, function() {
        $('#content2').show(300, function() {
            $('#next2_btn').attr("id", "next3_btn");

            $('#account').fadeTo(500,1.0)
.animate({marginLeft:"220px", width:"2em",'height' :"2em",duration:'medium'})
.animate({
    marginLeft:"400px", 
    marginTop:"35px",
    width:"7em",
    height:"7em",
        duration:"medium"
    }, 'medium', 'linear', function() {
    $('#statusGraphic').replaceWith('<img src="state2_138x28.gif">');
    })
.fadeTo(500,0.5);

$('#portfolio')
.fadeTo(500,1.5)
.animate({marginLeft:"-220px", width:"12em",height:"12.5em",duration:'medium'})
.animate({marginLeft:"-330px", width:"10.1875em",height:"11.875em",duration:'medium'});
});
    });
});
// end all action for first click from first pane


 });//end doc ready

0 个答案:

没有答案