Jump to content
  • 0

innerHTML и AJAX


CoDy
 Share

Question

Привет всем!!!

Обьясните плиз, если кто в курсе, почему когда присваиваешь значению innerHTML текст следующего типа: "<br />" обрезается " /".

Вот например:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">
<head>
<title></title>
</head>
<body>
<script type="text/javascript">

function process() {
var str = '<input id="contact" name="contactl" value="" type="text" /><br />';

alert(str);
document.getElementById('ab_container').innerHTML = str;

}

</script>
<input type="button" value="shift my" onClick="java script: process();"/>
<div id="ab_container">

</div>
</body>
</html>

после нажатия кнопки содержимое получается такое

<div id="ab_container"><input id="contact" name="contactl" value="" type="text"><br></div>

Вроде бы ничего военного не происходит, все работает как положено. Но код перестает быть валидным - обидно.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Думаю, тут не стоит сильно расстраиваться. Во-первых, создаваемый элемент является динамическим, поэтому физическое содержимое html-файла никак не меняет при своем создании (а следовательно, и валидность документа...). А во-вторых, у вас код изначально невалиден, так что отсутствующая косая черта в атрибуте innerHTML сильно картину не испортит...

Edited by Styx
Link to comment
Share on other sites

  • 0
Браузер какой?

да и опера, и мозила обрезает

- так а где аякс?

в оригинале AJAX есть, при помощи асинхронного запроса передается фрагмент страници, который присваивается значению innerHTML.

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