<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){ - this is saying to wait until document is ready before calling function
$("button").click(function(){ - this is saying when "button" is click to perform function.
alert("Value: " + $("#test").val()); - this is saying to show value in pop up box.
});
});
</script>
</head>
<body>
<p>Name: <input type="text" id="test" value="Mickey Mouse"></p> - this is input for the value
<button>Show Value</button> - this is the button.
</body>
</html>
ポップアップ ボックスではなく、html 本文に値を表示する方法を知りたいと思っていました。$(selector).document.write 関数を使用できると思っていましたが、機能していないようです。任意の支援をいただければ幸いです。前もって感謝します。