Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 HTML 页面中有一个<input id="foo" type="text">和一个<input type="file">。我知道输入文件在 iPad 2 中是灰色的,因为它不受支持。
<input id="foo" type="text">
<input type="file">
但是我发现真正奇怪的是我无法设置“foo”的值,例如document.getElementById("foo").value='something';
document.getElementById("foo").value='something';
如果我删除输入文件,那么一切正常。
这是一个已知问题/错误还是我错过了什么?我真的觉得这是一种奇怪的行为。
提前致谢。