Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can dynamically append "select" control to DOM,after appending it to DOM,I wanna change the html content of the last "select"(the latest "select" added dynamically),but it failed...

(I cannot set options value in param_html,becuase I should set them by using ajax request later.)

<script>
    $(function(){
      var param_html = '<select class="params"></select>';
      $("input[value='+']").click(function(){
        $('#parameters').append(param_html);
          $('.params :last').html('<option>aaa</option><option>keyword in profile</option><option>last tweet</option>');
      });

    });
  </script>
  <div id="parameters">
    <input type="button" value="+">
    <select class="params"><option>1</option><option>2</option></select>
  </div>

any suggestion is appreciated.

share|improve this question
This is very confusing question, and the script you've provided doesn't seem to make sense in context. Can you try and clarify? – Jivings Jun 17 '11 at 14:48
1  
actually, it's a problem in his selector ;) – Patricia Jun 17 '11 at 14:49
sorry,my english is poor,I have tried my best to express what I want to say correctly – gbstack Jun 17 '11 at 15:17

3 Answers

up vote 6 down vote accepted

take out the space between params and :last

$('.params:last').html('<option>aaa</option><option>keyword in profile</option><option>last tweet</option>');
share|improve this answer
thanks a lot,your answer is really fast! – gbstack Jun 17 '11 at 15:10
it's my pleasure :) – Patricia Jun 17 '11 at 15:11

your content seems to be added after the dom has been loaded.

try live http://api.jquery.com/live/

share|improve this answer
your solution works too,but Patricla is faster.. – gbstack Jun 17 '11 at 15:15

Well your CSS selector is imporper should be $('.params:last-child') or $('.params:last') i think the space bar is not allowed there.

Also no one forbis You from using the object you've created:

$(function(){
      var param_html = '<select class="params"></select>';
      $("input[value='+']").click(function(){
        $('#parameters').append(param_html);
          $(param_html).html('<option>aaa</option><option>keyword in profile</option><option>last tweet</option>');
      });

    });

If you are going to use AJAX in future then the same idea will work instead of reselecting the object use to one you've created.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.