Начало
Кнопки
Перейти по адресу
Имитация адресной строки браузера. Вводите адрес, жмете кнопку. Встроена проверка корректности ввода
JavaScript Перейти по адресу
<!-- START OF SCRIPT --> <SCRIPT LANGUAGE="JavaScript"> <!-- //**************************** //Scrollable links buttons by Sergey Guzenkov //Copyright (c) Sergey Guzenkov //You may freely use, modify this script as long as the credit is given in the source. //**************************** var n = 1 var nn = 2 var nnn = 3 var nnnn = 4 /*Add more variables if you want more buttons showing, or take them off if you want less. Remember to change the rest of the script accordingly if you do this, as well as the <INPUT> tags in the HTML.*/ var theMessages = new Array(7); { theMessages[1] = "This could lead to your Page one." theMessages[2] = "This could lead to your Page two." theMessages[3] = "This could lead to your Page three." theMessages[4] = "This could lead to your Page four." theMessages[5] = "This could lead to your Page five." theMessages[6] = "This could lead to your Page six." theMessages[7] = "This could lead to your Page seven." /*You don't have to have this array unless you still want alert boxes appearing when the buttons are clicked.*/ } var theValues = new Array(7); { theValues[1] = "Downloads" theValues[2] = "Cheats" theValues[3] = "Animations" theValues[4] = "Top Tips" theValues[5] = "Parameters" theValues[6] = "Links" theValues[7] = "Comments" } //add more values and/or change them for your liking. function goup() { if(n > 1){n = n-1 nn = nn-1 nnn = nnn-1 nnnn = nnnn-1 //If you've changed the amount of buttons showing, add your extra variables - 1 here. update()}} function godown() { if(nnnn < 7) { //Change the 7 if you want more buttons n++ nn++ nnn++ nnnn++ /*Add your extra variables, with a '++' right after them here, if you've changed the amount of buttons showing.*/ update()} else{}} //You could do 'window.location.href="whatever.html"' insted of the current alert boxes. function go1() { alert(cap1)} function go2() { alert(cap2)} function go3() { alert(cap3)} function go4() { alert(cap4)} function update() { document.form1.b1.value = theValues[n] document.form1.b2.value = theValues[nn] document.form1.b3.value = theValues[nnn] document.form1.b4.value = theValues[nnnn] cap1 = theMessages[n] cap2 = theMessages[nn] cap3 = theMessages[nnn] cap4 = theMessages[nnnn]} //****************************** //End of Scrolling links buttons script //****************************** //--> </SCRIPT>