我应该将字符串值存储在变量中还是作为隐藏输入值
就效率而言,将字符串值存储在变量中还是作为隐藏输入元素的内容存储有区别吗?这些值可能很大并且可以经常修改。
Is there a difference, in terms of efficiency, whether to store string values in variables or as a content of hidden input elements? Those values could be large and could be modified frequently.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除非您有理由在输入元素中存储值,否则就速度和内存消耗而言,使用变量要好得多。
Unless you have a reason to store values in input elements, it's much better to use variables, in terms of both speed and memory consumption.
您必须有充分的理由在输入字段中存储值。查询 DOM 来检索输入值可能需要一些时间。因此,将值存储在变量中将更容易检索和修改。
You must have a good reason to store a value in an input field. Its may take time to query the DOM to retrieve an input value. So storing a value in a variable will be easier to retrieve and modify.