gpt4 book ai didi

javascript - 用文本框交换文本区域,反之亦然

转载 作者:行者123 更新时间:2023-11-30 18:37:17 25 4
gpt4 key购买 nike

以下 jQuery 代码无效。请检查模糊事件导致问题的演示

//code to change textbox
$('.SpeakMindInputArea').live("click",function(){
$(this).hide().next().show(5).focus();
$(this).next().find('textarea').first().focus();

});
$('.SpeakMindField').live("blur",function(){
$(this).find('.SpeakMindInputArea').first().show().next().hide();
});

演示:http://jsfiddle.net/CwZKq/

我想单击文本框将其更改为文本区域,然后单击模糊返回。但是,如果我尝试提交表单,它需要保持原样。

最佳答案

你可以尝试这样的事情:

$('.SpeakMindInputArea').live("focus",function(){
$('.SpeakMindTextArea').not(this).hide().prev().show();
$(this).hide().next().show().find('textarea').focus();
});

在这种情况下,如果显示文本区域,则只有在单击另一个文本框时才会隐藏它。

关于javascript - 用文本框交换文本区域,反之亦然,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7888360/

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