作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 JavaScript 代码复制输入文件的值并将其实时粘贴到文本框中。
<script>
function copyit(){
var thephoto=document.getElementById('thephoto').value;
var fileonchange=document.getElementById('fileonchange').value;
if(!thephoto==fileonchange){
document.getElementById('fileonchange').value=thephoto;
}
}
window.setInterval("copyit()", 500);
</script>
Choose File : <input type="file" id="thephoto"><br>
Here Is the file name : <input type="text" id="fileonchange">
遗憾的是,这只有效一次,然后在再次更改文件时停止粘贴值。 (我的意思是你应该重新加载页面以使其再次工作)
IF
是否有缓存之类的?大家可以自己尝试代码看看。
最佳答案
语法错误。您需要 !=
运算符来表示不等式:
if (thephoto != fileonchange) {
!thephoto
实际上反转了它的 bool 表示(即 true
变成了 false
,反之亦然,null
变为 true
)。 ==
实际上比较了两个操作数的相等性。
关于javascript - 为什么 JavaScript IF 只能工作一次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2602404/
我是一名优秀的程序员,十分优秀!