IceBars Posted June 26, 2007 Report Share Posted June 26, 2007 Люди скажите плз кто знает как document.image.src="4.jpg" придать не 4.jpg значение а x? Очень надо. Link to comment Share on other sites More sharing options...
0 Emm Posted June 26, 2007 Report Share Posted June 26, 2007 var x = '4.jpg';document.image.src=х; Link to comment Share on other sites More sharing options...
0 IceBars Posted June 26, 2007 Author Report Share Posted June 26, 2007 Я использую следущее:<script language="VBScript">x=0 randomize x=rnd(1) x=fix(10*x) x=8 //допустимk= "'"+cstr(x)+".jpg'" <script language="JavaScript" type="text/javascript">var t=k;document.myImage.src= t;Объясните плз почему не работает Link to comment Share on other sites More sharing options...
0 avv Posted June 26, 2007 Report Share Posted June 26, 2007 Область имен <script language="VBScript">и <script language="JavaScript" type="text/javascript">не совпадаетКак следствие k в одном скрипте не k в другом.Можно во втором вставить alert("k="+k) и посмотреть, что собственно за k присваивается tВидно из верхнего скрипта гавное randomizeаналогичная есть и JavaScriptПроще верхний и нижний сделать одного типа. Link to comment Share on other sites More sharing options...
0 IceBars Posted June 26, 2007 Author Report Share Posted June 26, 2007 <script language="JavaScript" type="text/javascript">var p=parseInt(10*Math.random());document.myImage.src= "p.jpg"это тоже не работает(((( Link to comment Share on other sites More sharing options...
0 yopopt Posted June 26, 2007 Report Share Posted June 26, 2007 <img src="0.jpg" name="myImage" width=250 height=250><script language="JavaScript" type="text/javascript">var p=parseInt(10*Math.random());document.myImage.src= p + ".jpg";</script> Link to comment Share on other sites More sharing options...
0 IceBars Posted June 27, 2007 Author Report Share Posted June 27, 2007 Спасибо Огромное Link to comment Share on other sites More sharing options...
Question
IceBars
Люди скажите плз кто знает как document.image.src="4.jpg" придать не 4.jpg значение а x? Очень надо.
Link to comment
Share on other sites
6 answers to this question
Recommended Posts