textbox(text1)继续使用下面的javascript更改时间,在更改时间时我需要在后面的代码中的textbox change事件中执行一些任务,我尝试使用autopostback = true进行OnTextChanged,这在更改时间时无效,但是如果我手动更改textbox(text1)中的任何内容,它会起作用,我想在更改时间时触发onTextChanged。请帮助。
<script type="text/javascript">
function timedCount() {
var dt = new Date()
document.getElementById("text1").value = dt.toLocaleDateString() + ' ' + dt.toLocaleTimeString();
window.setTimeout(timedCount, 1000);
}
timedCount();
</script>