html页面中的更改未保存到磁盘

时间:2016-05-19 11:55:07

标签: html

我写了一个简单的html单元,其中包含一些文本框和选项按钮:

<!DOCTYPE html>
<!-- saved from url=(0047)file:///C:/Users/akumar8/Desktop/checklist.html -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></head><body>
<h1>Stock Pre-Review Checklist</h1>
<form>
    <table style="width:100%" border="1">
        <tbody><tr><th bgcolor="SpringGreen"> <font color="black">#</font></th>
        <th bgcolor="SpringGreen"> <font color="black">Stock Pre-Review Guideline</font></th>
        <th bgcolor="SpringGreen"> <font color="black">Yes</font></th>      
        <th bgcolor="SpringGreen"> <font color="black">No</font></th>
        <th bgcolor="SpringGreen"> <font color="black">N/A</font></th>
        <th bgcolor="SpringGreen"> <font color="black">Comments</font></th>
        </tr><tr bgcolor="LightGrey">
        <td width="2%"> 1 </td>
        <td width="70%"> Is the stock in place?</td>
        <td width="5%"> <input checked="checked" name="design_discussion" value="Yes" type="radio"> Yes</td>
        <td width="5%"> <input name="design_discussion" value="No" type="radio"> No</td>
        <td width="5%"> <input name="design_discussion" value="N/A" type="radio"> N/A</td>
        <td width="13%"> <textarea name="textarea" style="width:250px;height:75px;"></textarea>  </td>
        </tr>

        <tr bgcolor="DarkGrey">
        <td width="2%"> 2 </td>
        <td> Is the inventory aligned with the upcoming requirement?</td>
        <td>   <input name="req_acc_unamb_noncon" value="Yes" type="radio"> Yes</td>
        <td>   <input checked="checked" name="req_acc_unamb_noncon" value="No" type="radio"> No</td>
        <td>   <input name="req_acc_unamb_noncon" value="N/A" type="radio"> N/A</td>
        <td> <textarea name="textarea" style="width:250px;height:75px;"></textarea>  </td>
        </tr>
   </tbody></table>
</form>

当我在 Chrome / Internet Explorer浏览器中打开此设备并输入一些文本以及选项按钮中的一些更改然后保存网页时,我发现更改未保存在当我重新打开保存的html文件时,磁盘和所有这些更改都会丢失。 然而,当我使用Mozilla Firfox浏览器时,同样的事情也有效。

enter image description here

这里出了什么问题?

感谢任何帮助!

1 个答案:

答案 0 :(得分:2)

检查员可以预览更改而不是编辑html文件。我建议您使用一些合适的IDE来编辑HTML,例如Br​​ackets或Notepad ++。