Показать сообщение отдельно
  #5 (permalink)  
Старый 26.03.2015, 15:33
Аспирант
Посмотреть профиль Найти все сообщения от newuser1001
 
Регистрация: 24.03.2015
Сообщений: 92

hack3p,
Забирайте как обычно, это же обычный HTML-элемент. Например
<html>
<head>
<style>
 .editable{
  width: 50px;
  height: 20px;
  border: 1px solid black
 }
</style>
</head>
<body>

input some text:
<div class="editable" id="src">foo</div>
<br>
<button id="show">show</button>

<br>
result:
<br>
<div id="info" ></div>
 
<script>
 
;[].forEach.call(document.querySelectorAll(".editable"), function(x){x.contentEditable="true"})


show.onclick=function(){
 info.innerHTML=src.innerHTML
}
  
</script>
</body>
</html>
Ответить с цитированием