像这样的东西?
<input value="subject 1" type="button" onclick="document.getElementById('ta').value='subject 1'">
<input value="subject 2" type="button" onclick="document.getElementById('ta').value='subject 2'">
<br>
<form>
<textarea id="ta"></textarea>
</form>
如果你想用这个表单重定向到另一个页面,你可以使用hash,例如:
第一页(主题选择器)
<body>
<input value="subject 1" type="button" onclick="window.location.href='http://example.com/form#subject1'">
<input value="subject 2" type="button" onclick="window.location.href='http://example.com/form#subject2'">
</body>
第二页(带表格)
<body onload="var hash=window.location.hash;if(hash=='#subject1'){document.getElementById('ta').value='Subject 1';}if(hash=='#subject2'){document.getElementById('ta').value='Subject 2';}">
<form>
<textarea id="ta"></textarea>
</form>
</body>