gpt4 book ai didi

javascript - 如何使用 JavaScript 在 HTML 中创建文本文件

转载 作者:行者123 更新时间:2023-11-28 19:53:54 25 4
gpt4 key购买 nike

总的来说,我是一个真正的编码初学者。我想创建一个网站,人们可以进入并选择我们正在制作的戏剧中的 Angular 色。然后,我想提示输入他们的全名,以便我可以在该按钮的文件夹中创建一个文件,即在他们的名字下。在同一提示中,我想输入“/WINNER/”,然后从该按钮的文件夹中返回一个随机名称(文件名)。我希望这能引起轰动,而且我知道我可能会做出这个过于复杂的赌注,这是我发现这样做的唯一方法。如果我的代码看起来有点奇怪,也很抱歉,就像我说的,我是一个十足的菜鸟。

我的index.html

<head>
<title>Check Please | Enter</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Gafata|Metrophobic' rel='stylesheet' type='text/css' media="all">
</head>

<body>

<div id="Welcome">
<div id="WelcomeMessage">
<h5 class="redCenter">Welcome to the voting website of</h5>
<h3 class="Musical">'Check Please the Musical'</h3>
</div>

<div id="Enter-Img">
<a href="choice.html">
<img src="images/site/enter.png" width="438" height="241" class="button">
</a>
</div>
</div>

</body>

然后是我的选择.html

<head>
<title>Check Please | Voting</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Gafata|Metrophobic' rel='stylesheet' type='text/css' media="all">
</head>

<body>

<div id="Top">
<h3 class="Musical">Please click on one of the following characters that you believe to be the murderer, and then enter your full name.</h3>
</div>

<div id="Button 1">
<a href="Button 1/Button1.html">
<img src="images/site/Person 1.png" width="438" height="241" class="enter">
</a>
</div>

<div id="Button 2">
<a href="Button 2/Button2.html" onclick="Name = prompt('Enter your first and last name')">
<img src="images/site/Person 2.png" width="438" height="241" class="enter">
</a>
</div>

<div id="Button 3">
<a href="Button 3/Button3.html" onclick="Name = prompt('Enter your first and last name')">
<img src="images/site/Person 3.png" width="438" height="241" class="enter">
</a>
</div>

<div id="Button 4">
<a href="Button 4/Button4.html" onclick="Name = prompt('Enter your first and last name')">
<img src="images/site/Person 4.png" width="438" height="241" class="enter">
</a>
</div>

</body>

现在我只尝试使用一个按钮(Button1.html):

<head>
<title>Check Please | Thanks and Enjoy</title>
<link href="../css/styles.css" rel="stylesheet" type="text/css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Gafata|Metrophobic' rel='stylesheet' type='text/css' media="all">
</head>

<body>

<script type="text/javascript">
window.onload(Name = prompt("Enter your first and last name below"))

import java.io.PrintWriter;

if(Name == "/WINNER/") {
window.location.replace("http://stackoverflow.com");

}else{

import java.io.PrintWriter;

PrintWriter writer = new PrintWriter(Name + ".txt", "UTF-8");
writer.close();
};
</script>

<div>
<h3 class="Musical">Button 1</h3>
</div>

<div>
</div>


</body>

感谢您的任何意见!!!!!!!

最佳答案

您似乎是在 JavaScript 上下文中编写 Java。我要澄清一件事:JavaScript 与 Java 无关。它们是完全独立的语言,因此您不能使用 Java 库。

此外,您无法使用 JavaScript 写入任何目录。 JavaScript 在用户的浏览器中运行,该浏览器与服务器分离(您无法访问服务器上目录中的文件)

关于javascript - 如何使用 JavaScript 在 HTML 中创建文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22926492/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com