gpt4 book ai didi

android - 移除 readonly 属性并更改类型并在单个事件中关注相同的输入字段

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:38:11 24 4
gpt4 key购买 nike

我正在使用 jquery mobile 来让 cordova 应用程序在 android 和 ios 中运行。我有一个要求,我有一个默认值处于只读状态的文本字段。在聚焦文本字段时,我需要删除 value 和 readonly 属性并将类型更改为 datetime-local 并聚焦。

所有这些都应该在一次触摸事件中发生。现在专注于只读,输入字段的值和类型发生变化。但没有得到关注,因此必须再次单击以查看 android 和 ios 设备中的日期时间选择器。我找不到问题。

我的代码是这样的。

HTML:

<input type="text" readonly data-clear-btn="false" id="instantTime"  value="Right Now" >

JS:

$('#instantTime').off("focus").on("focus", function(e) {
e.preventDefault();
if($(this).prop("type") == "text"){
$(this).removeAttr('readonly').val('');
$(this).prop("type", 'datetime-local').select();
}
});
$('#instantTime').off("blur").on("blur", function(e) {
e.preventDefault();
if($(this).val().trim() == ""){
$(this).prop("type",'text').val("Right Now").attr('readonly', true).blur();
}else{
$(this).prop("type",'datetime-local').blur();
}
});

提前致谢。

最佳答案

我不能说安卓。但以下是 HTML 的等价物:

将以下代码放入$(document).ready(function(){}):

$("#instantTime").click(function() {
$(this).prop("readonly",false);
$(this).prop("type","datetime-local");
$(this).focus();
});

关于android - 移除 readonly 属性并更改类型并在单个事件中关注相同的输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25864632/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com