作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的网站上有一个表单,需要用当前的 UNIX 毫秒时间戳预先填充。
我确实有另一个表单字段(同一表单),它使用以下代码成功预填充了日期(月、日、年):
<div>DATE<br><input name="date" id="date"></div>
<script>
(function() {
var days = ['','','','','','',''];
var months =
['Jan','Feb','Mar','Apr','May','June','July','Aug','Sept','Oct','Nov','Dec'];
Date.prototype.getMonthName = function() {
return months[ this.getMonth() ]; };
Date.prototype.getDayName = function() {
return days[ this.getDay() ]; }; })();
var now = new Date();
var day = now.getDayName();
var month = now.getMonthName();
document.getElementById('date').value = day + ' ' + month + ' ' +
now.getDate() + ', ' + now.getFullYear();
</script>
但是...当尝试使用以下代码使用 Unix 毫秒时间戳预填充第二个表单字段时,我没有同样的运气:
<div>TIMESTAMP URL<br><input name="timeStampURL" id="timeStampURL"></div>
<script>
var d = new Date();
document.getElementById('timeStampURL').innerHTML = d.getTime();
</script>
我不明白为什么这两个代码的行为不同,但任何有关如何让该脚本预填充字段的建议将不胜感激。
最佳答案
输入元素没有任何内容,因此设置其 innerHTML 属性不会执行任何操作。您的第一个函数是设置 value 属性,第二个函数也应该如此:
function showTimeValue() {
document.getElementById('timeValue').value = Date.now();
}
window.onload = showTimeValue;
<input id="timeValue">
<button onclick="showTimeValue()">Update time value</button>
每次运行代码时,您都会获得更新的值。
关于javascript - 使用 Javascript 的内部毫秒时钟预填充表单字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44193150/
我尝试通过正则表达式将文本中的单引号更改为双引号。 (单字)示例:我走了。 You gona fly to planet 'Ziqtos' => 我需要在 I'm 中保留单引号,并在 You gona
我正在构建一个 API,其中大部分将包含 JSON 和 HTML 内容。但是一些非常具体的端点只呈现 true 或 false,并且还在 POST 中接受 true 或 false。这是请求或响应的整
我是一名优秀的程序员,十分优秀!