javascript - jQuery using "subquery" - Stack Overflow

I am moderately certain the answer has already been answered, my issue is I don't know what to eve

I am moderately certain the answer has already been answered, my issue is I don't know what to even ask.

I am trying to dynamicly add already existing HTML divs by cloning them and changing the values, and I ran into an issue

HMTL :

    <div class="worldRow">
        <div class="worldProperties">Name</div>
        <div class="worldProperties worldName">World name</div>
        <div class="worldProperties">Population</div>
        <div class="worldProperties worldPopulation">50</div>
        <div class="worldProperties">Occupency</div>
        <div class="worldProperties worldOccupency">45%</div>
    </div>

Javascript :

function addWorld(data){
    var row = $('#fakeWorldList .worldRow').clone();
    row = $(row).attr('id',data.worldId);
    $(row).('.worldName').value('this will never work, halp.');
}

In my javascript, on the last row of my function, I am trying to set the div with the class "worldName" a new value, but I simply cannot figure how.

If anyone could point me in the right direction, it would be much appreciated.

Cheers

I am moderately certain the answer has already been answered, my issue is I don't know what to even ask.

I am trying to dynamicly add already existing HTML divs by cloning them and changing the values, and I ran into an issue

HMTL :

    <div class="worldRow">
        <div class="worldProperties">Name</div>
        <div class="worldProperties worldName">World name</div>
        <div class="worldProperties">Population</div>
        <div class="worldProperties worldPopulation">50</div>
        <div class="worldProperties">Occupency</div>
        <div class="worldProperties worldOccupency">45%</div>
    </div>

Javascript :

function addWorld(data){
    var row = $('#fakeWorldList .worldRow').clone();
    row = $(row).attr('id',data.worldId);
    $(row).('.worldName').value('this will never work, halp.');
}

In my javascript, on the last row of my function, I am trying to set the div with the class "worldName" a new value, but I simply cannot figure how.

If anyone could point me in the right direction, it would be much appreciated.

Cheers

Share asked May 1, 2013 at 3:55 Munsta0Munsta0 1211 silver badge7 bronze badges 1
  • 1 try $(row).find('.worldName').html('this will never work, halp.'); – Dipesh Parmar Commented May 1, 2013 at 3:56
Add a ment  | 

2 Answers 2

Reset to default 9

You need to use .find() to search for a child element

$(row).find('.worldName').text('this will never work, halp.');

Ex:

function addWorld(data){
    var row = $('#fakeWorldList .worldRow:first').clone();
    row = $(row).attr('id',data.worldId);
    $(row).find('.worldName').text('this will never work, halp.');
}

.value is for input elements, you need to do

$(row).find('.worldName').html('this will never work, halp.');

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743687631a4490411.html

相关推荐

  • javascript - jQuery using &quot;subquery&quot; - Stack Overflow

    I am moderately certain the answer has already been answered, my issue is I don't know what to eve

    19小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信