これまでに何を試しましたか?JavaScriptプロンプトを使用したいようです...ここに大まかな例があり、ここに読むべき情報があります... https://developer.mozilla.org/en-US/docs/DOM/window.prompt
<!DOCTYPE html>
<html>
<body>
<p>Click the button to demonstrate....</p>
<button onclick="myFunction()">Try it</button>
<input type="text" id="demo"></p>
<script type="text/javascript">
function myFunction(){
var x;
var name=prompt("Please enter your name","Bob Mould"); // note that you can put a default value...
if (name!=null){
x="Hello " + name + "!";
document.getElementById("demo").value=x;
}
}
</script>
</body>
アップデート **
下のコメントから「いいえ、これからユーザーの名前を取得します<input type="text" name="uname" /
>ボタンをクリックすると、別のテキストボックスに表示されます。」これは元の質問とは異なり、これが必要なものですしかし、あなたの元の質問は誤解を招くものでした...
これを試して...
<!DOCTYPE html>
<html>
<body>
<p>Click the button</p>
<input type="text" id="uname" />
<input type="text" id="demo" />
<button onclick="myFunction()">Try it</button>
<script type="text/javascript">
function myFunction(){
if(document.getElementById("uname").value.length > 0){
document.getElementById("demo").value = document.getElementById("uname").value;
}else{
alert("please enter a value");
}
}
</script>
</body>
</html>