Jump to content
  • 0

Jquery, Ajax И Манипуляции С Ответом Сервера.


ekkl
 Share

Question

Значит так, по аджакс-запросу сервер возвращает какой-то результат в виде куска html кода. Из этого куска надо вырезать H2 и вставить в определенный div. (Он уже есть в загруженном документе.) А все "остальное" в другой div.

Предложенный способ

function loadform(a)
{$.ajax({url:a['href'],beforeSend:function(){opendlg();$('#ajaxload').fadeIn(500);$('#ajaxcontent').hide();},success:
function(data)
{
var sret = $(data);
$('h2', sret).appendTo('#dh2');
$('#ajaxload').stop().fadeOut(500);
$(sret).appendTo('#ajaxcontent');
$('#ajaxcontent').stop().fadeIn(500);}})}

Не работает. Точнее заголовок не вырезается, и все вставляется в #ajaxcontent'

Пример ответа сервера

<h2>create tags</h2>
<script type="text/javascript">
$().ready(function() {

// validate signup form on keyup and submit
$("#tag").validate({
submitHandler: function(){formgears('#tag');}});
})
</script>

<form action="<?= part_url('edt/savetags.htm') ?>" method="POST" id="tag">
<div class="field">
<?= form_labelinput('title', $title , 'tag_title') ?>
</div>....

Edited by ekkl
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
Ну всё правильно. Вы нигде не вырезаете <h2>. Сделайте что-нибудь типа $(sret).children('h2').remove(); или реплейсом уберите его из data.

Мне не нужно его ощищать. Мне нужно вставить его в div.

Я не могу понять почему в случае

<div>
<h2>create tags</h2>
<script type="text/javascript">
$().ready(function() {

// validate signup form on keyup and submit
$("#tag").validate({
submitHandler: function(){formgears('#tag');}});
})
</script>

эта строка работает

$('h2', sret).appendTo('#dh2');

а в случае

<h2>create tags</h2>
<script type="text/javascript">
$().ready(function() {

// validate signup form on keyup and submit
$("#tag").validate({
submitHandler: function(){formgears('#tag');}});
})
</script>

НЕТ.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy