我 尝试 使用JavaScript lastModified功能;而不是整个文档(似乎是为它设计的)。
var x = new Date(document.lastModified);
我想用它来显示指定类中的{strong> lastModified
元素的日期。
例如;我有一个父类为“主页”的div,我想检测“主页”中的元素何时为lastModified
,然后显示日期。 但不包括常见的页眉/页脚;仅在指定的类'homepage
'
答案 0 :(得分:1)
我认为您能做的最好的事...
$('.example-default-value').each(function() {
var default_value = this.value;
$(this).focus(function() {
if(this.value == default_value) {
this.value = '';
}
});
$(this).blur(function() {
if(this.value == '') {
this.value = default_value;
}
});
});
function example_append() {
$('#example').append($('#example-textarea').val());
$("#asd").html("This page was last modified on: "+document.lastModified);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="example" style="border: 1px solid rgb(204, 204, 204); margin: 5px 0pt; padding: 5px;">Example div</div>
<form>
<div><textarea class="example-default-value" id="example-textarea" style="width: 400px; height: 50px;">Type some text in here to be appended</textarea></div>
<div><input type="button" value="Append" onclick="example_append()" /></div>
</form>
<p id="asd"></p>