как вот эту строчку 'Привет, Mariko. Ваш последний визит: Сегодня 21:16:30.'
точнее подчеркнутые места изменить по своему
вопрос
Сообщений 1 страница 3 из 3
Поделиться112.04.2009 21:45:49
Поделиться212.04.2009 22:04:40
violemor
<script>
<!--
greet="свой текст (привет), "
str = document.getElementById("pun-status").innerHTML
pos = str.indexOf("Привет")
document.getElementById("pun-status").innerHTML=str.substring(0,pos)+greet+str.substring(pos+8,str.length-1)
visit="свой текст-2 (ваш последний визит)"
str = document.getElementById("pun-status").innerHTML
if( (pos=str.indexOf("Ваш последний визит")) != -1 )
document.getElementById("pun-status").innerHTML=str.substring(0,pos)+visit+str.substring(pos+21,str.length-1)
-->
</script>
Поделиться312.04.2009 22:21:35
Привидение
спасибо