javascript - 在ios中通过javascript设置输入类型="datetime"
<p><p>我在 JS 中有一个 Date 对象,我正在尝试设置 .但我似乎无法弄清楚。在 IOS 中没有任何反应。</p>
<p>提前致谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我认为您所指的问题是在 iOS 5 中设置日期时间类型的输入字段。喜欢这个:</p>
<pre><code><input type="datetime" id="dateStart" />
</code></pre>
<p>我发现的唯一方法是使用 toISOString() 格式化方法</p>
<pre><code>var currentTimeAndDate = new Date();
document.getElementById('dateStart').value = currentTimeAndDate.toISOString();
</code></pre>
<p>或在 jQuery 中</p>
<pre><code>$("#dateStart").val(currentTimeAndDate.toISOString());
</code></pre></p>
<p style="font-size: 20px;">关于javascript - 在ios中通过javascript设置输入类型="datetime",我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/9169168/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/9169168/
</a>
</p>
页:
[1]