Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张包含一些数据的表格。所有数据都包含在下拉框和文本框中。但是很难看出,什么是新写入的输入,什么是来自数据库的数据。
所以我想在这些框之后创建一个(编辑),并用下拉框中包含的值所在的文字替换这些框。当按下编辑按钮时,文字消失,而是出现下拉框,因此可以编辑数据。这就是全部,jQuery 不必将数据保存到数据库,我在保存按钮中具有该功能。
我不想对 jQuery 使用任何额外的插件,因为它似乎是一个相当简单的任务。
有什么好主意吗?
我无法在这里编写整个代码,请根据您的意愿更改。我没有清除您的问题。 点击编辑时试试这个
$(document).ready(function(){ $(".edit").click(){ $(".dropdown").show("slow"); $(".edit").hide("slow"); });
样式表.css
.dropdown { display:none; }
编辑后只需反转代码;