我应该将字符串值存储在变量中还是作为隐藏输入值

发布于 2024-12-23 02:28:32 字数 60 浏览 0 评论 0原文

就效率而言,将字符串值存储在变量中还是作为隐藏输入元素的内容存储有区别吗?这些值可能很大并且可以经常修改。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

水水月牙 2024-12-30 02:28:32

除非您有理由在输入元素中存储值,否则就速度和内存消耗而言,使用变量要好得多。

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.

带刺的爱情 2024-12-30 02:28:32

您必须有充分的理由在输入字段中存储值。查询 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文