textarea {
background-color: #E6E6E6;
}
</style>
</head>
<body>
<div class="container">
<div class="jumbotron">
</h1>
</div>
</div>
</div>
<button onclick="myFunction()">
<noscript>
<b> Press CTRL+S And Name It Something (---------).html </b>
</noscript>Save
</button>
<script>
function myFunction() {
alert("To Save Press CTRL+S And Name It Something (---------).html ");
}
</script>
答案 0 :(得分:0)
如果在浏览器窗口中按CTRL + S,浏览器将保存来自服务器(此处为本地计算机)的原始html。在这种情况下,html本身不包含文本,因此不会保存。
如果您想保存输入的文字,则必须另外制作一个功能,将textarea内容包含在html中。