Jump to content
  • 0

DIV и Script


skid
 Share

Question

добрый день. Есть такая проблема.

Есть поле div со стилем: overflow: auto;

И в этот div посредством innerHTML пишется текст.

Только вот в ч?м проблема, когда overflow: auto; есть в стиле, текст в div добавляеться только один раз и после этого ничего не отображаеться, если overflow: auto; убрать, то вс? прекрасно пишеться. Кто нить сталкивался с таким косяком?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Вод весь наверно сюда труддно будет вставить. вот вырезка:

Стиль:

<style> 
.resize {
color: #222;
margin: 0;
padding: 2px 5px;
background: #eee;
border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd;
border-top: 1px solid #f5f5f5;
border-left: 1px solid #f5f5f5;
font-size: 11px;
font-weight: normal;
font-family: 'Andale Mono', sans-serif;

}



#div_msgs {
width: 100%;
height: 100px;
overflow: auto;
}
</style>

DIV:
<div id="div_msgs" class="resize"></div>

Ну и приблизительный JS
<script>
function doUpdate(){
var dv = document.getElementById("div_msgs");
dv.innerHTML+='test1';
setTimeout('doUpdate()',6000);
}
</script>

Link to comment
Share on other sites

  • 0

2 skid, аналогично - все работает. Или ты пишешь более конкретно в каком браузере, при каких обстоятельствах и т.п.

2 Алхимик: см код. "doUpdate is not defined [break on this error] setTimeout('doUpdate()',6000);" чет не заметил я этой самой фукции-то

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