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.
我有 3 个框架,每个框架都有几个文本输入框和我创建的一些复选标记。每次我单击转到下一帧时,我的输入和复选标记都会在上一帧上擦除。当我在我的框架中移动时,有没有办法让他在我的文本输入中保留文本?
谢谢
尝试为每个帧中的相同输入提供相同的实例名称
变量应该做的工作
var firstcontent = "mycontent"; var secondcontent = "mycontent"; ...