HTML: 如何输出到.txt 或 xml 文件
HTML: How to output to .txt or xml file
我是如何尝试创建调查并找出文本或 xml 文件的答案的。
在 HTML 中可能吗?
<html>
<head>
<title>Testing the Survey Application</title>
</head>
<body bgcolor="#E6E6FA">
<font color=black size=+3>Modifying Sentiment</font>
<hr>
Add positive adjective:
<img Adjective src="http://findicons.com/files/icons/2776/android_icons/96/ic_question_mark.png" alt="question" title="Adjective: is a word naming an attribute of a noun, such as sweet, red, or technical."
width=20 />
<br>
<textarea cols=40 rows=3 name=textBox1></textarea>
<p>
<hr>
<input type=submit value=Submit>
<input type=reset value=Clear>
<br>
</form>
</body>
</html>
HTML 是一种标记语言。它用于描述网页的元素。
如果您需要功能,例如提交和处理表单。您将需要添加服务器端语言,例如 Python
、PHP
、Ruby
等。
我是如何尝试创建调查并找出文本或 xml 文件的答案的。 在 HTML 中可能吗?
<html>
<head>
<title>Testing the Survey Application</title>
</head>
<body bgcolor="#E6E6FA">
<font color=black size=+3>Modifying Sentiment</font>
<hr>
Add positive adjective:
<img Adjective src="http://findicons.com/files/icons/2776/android_icons/96/ic_question_mark.png" alt="question" title="Adjective: is a word naming an attribute of a noun, such as sweet, red, or technical."
width=20 />
<br>
<textarea cols=40 rows=3 name=textBox1></textarea>
<p>
<hr>
<input type=submit value=Submit>
<input type=reset value=Clear>
<br>
</form>
</body>
</html>
HTML 是一种标记语言。它用于描述网页的元素。
如果您需要功能,例如提交和处理表单。您将需要添加服务器端语言,例如 Python
、PHP
、Ruby
等。