Vista gadget/javascript 传递变量问题
我一直在努力解决这个问题,但找不到任何关于这个看似非常简单的想法的教程。
我已使用以下命令写入 settings.html 文件中的设置:
System.Gadget.Settings.writeString("Date1", month + "-" + day + "-" + year);
这似乎有效。 它在设置中正确显示。
现在,在主文件 gadget.html 中,我想提取数据并显示它(而不是在输入标记中)。 执行此操作的完整代码是什么?
I've been struggling with this and can't find a single tutorial on what seems to be a very simple idea.
I've written to the settings in the settings.html file using:
System.Gadget.Settings.writeString("Date1", month + "-" + day + "-" + year);
And that seems to have worked. It displays properly in the settings.
Now, in the main file, gadget.html, I want to pull the data out and display it (not in an input tag). What is the complete code to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其写入xml文件并使用ajax读取它。
或者,将其写入 .js 文件并使用
构造导入。
Write it to an xml file and use ajax to read it.
Alternatively, write it to a .js file and import it with a
<script src=...></script>
construct.