猿问

菜鸟关于用表单保存数据的问题

如下代码,想要通过点击提交按钮将用户输入的数据保存在本地customerdata.txt文件中,但测试得到的是空白文件。
<!DOCTYPE HTML>    
<html>    
<head>    
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">    
<title>提交按钮</title>    
</head>    
<body>    
<form  method="post" action="file:///TXT/customerdata.txt">    
<label for="myName">姓名:</label>    
<input type="text" value=" " name="myName " />    
<input type="submit" value="提交" name="submitBtn" />    
</form>    
</body>    
</html>


benbenniao
浏览 1206回答 1
1回答

pardon110

明确一点 form表单是页面与WEB服务器交互信息的来源,即意味action属性指向一个服务器能处理的地址file:///TXT/customerdata.txt ??????你想实现的效果,其实两步,将内容提交到正确的服务器地址,然后通过服务器脚本语言将内容写入customerdata.txt文件
随时随地看视频慕课网APP
我要回答