JavaScript
- 13 ответов
- 0 вопросов
11
Вклад в тег
$answer = shell_exec("./ffmeg -param1 -param2");
document.addEventListener('keydown', function(e){
KEY = ["t", "e", "s", "t"];
this.INPUT = this.INPUT || [];
this.INPUT.push(e.key);
if (this.INPUT.some((e, i) => KEY[i] != e))
this.INPUT = [this.INPUT.pop()];
else if (this.INPUT.length == KEY.length){
console.log("Congratulations!");
this.INPUT = [];
}
})
<html>
<head>
<title>Document</title>
</head>
<body>
<form action="b.html" method="GET">
<input type="text" name="variable1">
<input type="text" name="variable2">
<input type="submit">
</form>
</body>
</html>
<html>
<head>
<title>Document</title>
</head>
<body>
<script type="text/javascript">
function getGETParameters(paramStr){
return Object.fromEntries(paramStr.split('&').map(e => decodeURI(e).split('=')));
}
console.log(getGETParameters(window.location.search.substr(1)));
</script>
</body>
</html>
<html>
<head>
<title>Document</title>
</head>
<body>
<script type="text/javascript">
function getGETParameters(paramStr){
return Object.fromEntries(paramStr.split('&').map(e => decodeURI(e).split('=')));
}
let variables = getGETParameters(window.location.search.substr(1));
console.log(variables["variable1"]); // эта строка выведет в консоль то, что Вы вводили в первый input
</script>
</body>
</html>