2

私がこのhtml domを持っているとしましょう

<body>
  <div id="divId">
    <span>John,</span>
    <span>Karl,</span>
    <span>Brandon,</span>

    <span>Sam</span>
  </div>

最後の子のにスパンの子をロードしたい、このようなことがしたい

$("#divId span:last-child").after().load('http://localhost/testing/getter.php');

ロード機能を使用した後にこれを使用するにはどうすればよいですか

ありがとう

4

2 に答える 2

1

以下を使用してこれを実現できます$.ajax

$.ajax({
    url: 'http://localhost/testing/getter.php',
    context: $('#divId')
}).done(function(data) {
    this.append(data);
});

ここで動作することを確認してください:http://jsfiddle.net/mfKvc/1/

于 2012-10-11T12:10:11.953 に答える
0

次のことを試してください。

$('<span>').load('http://localhost/testing/getter.php').insertAfter("#divId span:last-child");
于 2012-10-11T12:14:09.847 に答える