我无法复制文本中的所有内容,但我希望如何设置重置按钮或至少将f5键转到另一个按钮以在需要时重置表单。
我还在学习,非常感谢任何建议。
还有一种方法可以把这个东西放在盒子里吗?就像一张看起来有点专业的桌子。 我附上一张照片,说明我希望得到的东西与现在的东西相比
<html>
<head>
<title>Shin</title>
</head>
<body>
<center>
<textarea id="text" cols="80" rows="34" >
SESA
Caller's Name:
Call back number:
Email Address:
Related case #s (case history):
Location, remote/hotel/office:
Application Name:
Number of Users Affected: Number of Users Affected: (Single User / Less than 5 users / 5 or more users)
What is the issue/problem:
When did the issue/problem begin:
Login id:
Error message (if any):
When was the last time it worked properly:
Have there been any changes to your PC since the last time it worked properly:
Have you changed your password recently:
Troubleshooting steps (detailed):
Additional Detail (links, screen shots etc.. :
Resolution:
A - problem:
B - cause:
C - actions:
D - resolution:
----------------------------------------------------------</textarea><br>
<button onclick="copy()">Copy</button><br>
<script type="text/javascript">
function copy () {
var text = document.getElementById('text');
var range = document.createRange();
range.selectNode(text);
window.getSelection().addRange(range);
document.execCommand('copy');
}
</script>
</body>
</html>