clipboardData
. Но обходной маневр есть - содержимое клипборда находится в input. И maxlength надо убрать.<input id="txt2" type="text" placeholder="Paste your text">
<textarea id="txt" disabled></textarea>
document.querySelector("#txt2").addEventListener("paste", function(e) {
alert("Thanks")
e.preventDefault();
var pastetext = e.clipboardData.getData("text/plain");
document.getElementById('txt').value = document.getElementById('txt2').value;
});
document.querySelector("#txt2").addEventListener("change", function() {
document.getElementById('txt2').value = '';
});
<?php if(isSet($_POST["send3"])) { ?>
Вы все заполнили!<br>
A: <?=$_POST["a"]?>, B: <?=$_POST["b"]?>, C: <?=$_POST["c"]?>, D: <?=$_POST["d"]?>, E: <?=$_POST["e"]?>, F: <?=$_POST["f"]?>
<?php else if(isSet($_POST["send2"])) { ?>
<form method="post">
<input type=hidden name=a value="<?=htmlspecialchars($_POST['a'])?>">
<input type=hidden name=b value="<?=htmlspecialchars($_POST['b'])?>">
<input type=hidden name=c value="<?=htmlspecialchars($_POST['c'])?>">
<input type=hidden name=d value="<?=htmlspecialchars($_POST['d'])?>">
Поле E: <input type=text name=e><br>
Поле F: <input type=text name=f><br>
<input type=hidden name=send3>
<input type=submit value="Далее">
</form>
<?php else if(isSet($_POST["send1"])) { ?>
<form method="post">
<input type=hidden name=a value="<?=htmlspecialchars($_POST['a'])?>">
<input type=hidden name=b value="<?=htmlspecialchars($_POST['b'])?>">
Поле C: <input type=text name=c><br>
Поле D: <input type=text name=d><br>
<input type=hidden name=send2>
<input type=submit value="Далее">
</form>
<?php } else { ?>
<form method="post">
Поле A: <input type=text name=a><br>
Поле B: <input type=text name=b><br>
<input type=hidden name=send1>
<input type=submit value="Далее">
</form>
<?php } ?>