Jump to content
  • 0

подгружаемая страница и ее форматирование


fu2re
 Share

Question

возник вот такой вот вопрос:

есть

<html>
<div id=12>
<div> hello </div>
<div> world </div>
</div>
</hmtl>

$('#12').empty();
$.ajax({
url: "../core/forum.php",
global: false,
type: "GET",
data: ({id : 12}),
dataType: "html",
success: function(msg){ $('#12').append(msg) }
})//ajax

function setEqualHeight(columns) {
var tallestcolumn = 0;
columns.each(
function() {
currentHeight = $(this).height();
if(currentHeight > tallestcolumn) {
tallestcolumn = currentHeight;
}
}
);
columns.height(tallestcolumn);
}

});

смысл тут такой - печатаем страницу, по аякс запросу получаем еще какокй то хтмл код из двух блоков див, после чего смотрим у какого из них больший размер, и приравниваем размер обоих столбцов к большему, так вот, сам скрипт без аякс запроса работает нормально, и колонки выравнивает, но тот хтмл код который получен через аякс он отработать не может, почепму, и что можно с этим сделать, много раз сталкивался с этим, ответа нигд на этот вопрос не видел, может кто нибудь знает, подскажите плиз

Edited by fu2re
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
А вы уверены, что полученный при помощи аякса, код успевает загрузится и только после этого скрипт начинает его обрабатывать?

setTimeout("setEqualHeight2 ()", 10);

помогло, спасибо большое, все было просто)

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