Jump to content
  • 0

jquery load


Dimitry-1983
 Share

Question

Здравствуйте!

Есть такой код:

<!DOCTYPE html>

<html>

<head>

<script src="http://code.jquery.com/jquery-latest.js"></script>

<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />

<title>Тест</title>

</head>

<body>

<script language="javascript" type="text/javascript">

$(document).ready(function(){

$('#result').load('inc.html #result');

});

</script>

<DIV id="#result"></DIV>

</body>

</html>

файл inc.html:

<DIV id="#result">

ТЕСТ

</DIV>

Почему-то не работает, помогите пожалуйста, что не так.

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Ну лично у меня все заработало. Вот как у меня все устроено: создал 2 файла test.html и test2.html.

Содержимое test.html:


<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />

<title>Document</title>

<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script>
$(function() {
$('#test').load('test2.html #test2');
});
</script>
</head>
<body>

<div id="test"></div>

</body>
</html>

Содержимое test2.html:

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />

<title>Document</title>
</head>
<body>

<div id="test2">
my test text
</div>

</body>
</html>

В итоге получаю "my test text" в test.html. Смотрю локально, но использую web-сервер Apache. Проверяйте, что есть у меня, чего нет у вас.

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