gpt4 book ai didi

javascript - 将输入更改为 div,反之亦然

转载 作者:行者123 更新时间:2023-12-02 17:49:37 25 4
gpt4 key购买 nike

我有一些代码可以更改 div 的输入

$(document).ready(function(){
$('#btnChange').click(function(){
$('#products, #mrp, #discount').replaceWith(function(){
return '<div id="'+this.id+'">'+this.value+"</div>";
});
});
});

我想要的是在第二次单击按钮时将它们从 div 更改回具有相同 id 和相同值的输入。或者你可以说撤消我第一次点击时所做的事情。

最佳答案

尝试

$(document).ready(function () {
$('#btnChange').click(function () {
$('#products, #mrp, #discount').replaceWith(function () {
if ($(this).is('input')) {
return $('<div />', {
id: this.id,
//use text to prevent html injection
text: this.value
});
} else {
return $('<input />', {
id: this.id,
value: this.innerHTML
});
}
});
});
});

演示:Fiddle

关于javascript - 将输入更改为 div,反之亦然,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21474971/

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