菜鸟教程小白 发表于 2022-12-13 11:22:36

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>&lt;input type=&#34;datetime&#34; id=&#34;dateStart&#34; /&gt;
</code></pre>

<p>我发现的唯一方法是使用 toISOString() 格式化方法</p>

<pre><code>var currentTimeAndDate = new Date();
document.getElementById(&#39;dateStart&#39;).value = currentTimeAndDate.toISOString();
</code></pre>

<p>或在 jQuery 中</p>

<pre><code>$(&#34;#dateStart&#34;).val(currentTimeAndDate.toISOString());
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于javascript - 在ios中通过javascript设置输入类型=&#34;datetime&#34;,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9169168/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9169168/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: javascript - 在ios中通过javascript设置输入类型=&#34;datetime&#34;