无法动态添加跳转列表任务到IE9/Win7菜单
我可以使用元标记将“任务”添加到 IE9 中的固定站点,例如。
<meta name="msapplication-task" content="name=Twitter;action-uri=http://www.twitter.com;icon-uri=http://a1.twimg.com/a/1301438647/images/favicon.ico" />
但如果我尝试使用 javascript 添加新任务,它们永远不会显示。
function jQuery_ActivateJumplists() {
var favicon = "http://a1.twimg.com/a/1301438647/images/favicon.ico";
var externalWindow = null;
if (window.external.msIsSiteMode()) {
externalWindow = window.external;
externalWindow.msSiteModeCreateJumpList("Twitter!");
externalWindow.msSiteModeAddJumpListItem("Twitter Link", "http://www.twitter.com", favicon);
externalWindow.msSiteModeShowJumplist();
}
};
有什么建议吗?
I am able to add "tasks" to a pinned site in IE9 using meta tags eg.
<meta name="msapplication-task" content="name=Twitter;action-uri=http://www.twitter.com;icon-uri=http://a1.twimg.com/a/1301438647/images/favicon.ico" />
But if I try to add new tasks using javascript, they never show up.
function jQuery_ActivateJumplists() {
var favicon = "http://a1.twimg.com/a/1301438647/images/favicon.ico";
var externalWindow = null;
if (window.external.msIsSiteMode()) {
externalWindow = window.external;
externalWindow.msSiteModeCreateJumpList("Twitter!");
externalWindow.msSiteModeAddJumpListItem("Twitter Link", "http://www.twitter.com", favicon);
externalWindow.msSiteModeShowJumplist();
}
};
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎是 Windows 中缓存损坏的问题。
解决方案是创建并运行包含以下内容的 .bat...
Appears to have been an issue with corrupt cache in windows.
Solution is to create and run a .bat with the following contents...