Vladimir

wxdqz

New Member
A can' t come to the transference of value from one file to another
This value must be after URL
Thanks a lot

<html>
<head>
<title>prob1</title>
<script language="JavaScript1.1">
function komm(da){
var lengw=da;
var url;
url="prob2.html?lengw="+da;
window.location.href = url;
}
</script>
</head>

<body>

<img onClick="komm('de')" src=http://www.webdeveloper.com/forum/archive/index.php/"fot/fl_de.jpg">
<img onClick="komm('ru')"src="fot/fl_ru.jpg">
</body>
</html>
--------------------------


<html>
<head>
<title>prob2</title>
</head>
<body>
<script language="JavaScript1.1">
document.write("lengw is : "+lengw);
</script>
</body>
</html>
 
Back
Top