如何创建一个链接,使该页面成为主页或书签?

发布于 2024-07-25 01:05:57 字数 81 浏览 8 评论 0原文

有没有一种简单的方法来创建一个可以实现这两种功能的链接?

基本上,我想要一个非常简单的方法来做到这一点。 任何建议都有帮助。

Is there a simple way to create a link that does either?

Basically, I would like a very simple way to do this. Any suggestions are helpful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

有木有妳兜一样 2024-08-01 01:05:57

仅在 IE 中:

<a href="javascript:window.external.AddFavorite('http://mysite.com', 'My Site')">Bookmark This Site</a>

在 Firefox 和 IE 中:

function addBookmark(title, url) {
        if (window.sidebar) { // firefox
              window.sidebar.addPanel(title, url,"");
        } else if( document.all ) { //MSIE
                window.external.AddFavorite( url, title);
        } else {
               alert("Sorry, your browser doesn't support this");
        }
}

<a href="javascript:addBookmark('My Site','http://www.mysite.com')>Add bookmark</a>

In just IE:

<a href="javascript:window.external.AddFavorite('http://mysite.com', 'My Site')">Bookmark This Site</a>

In firefox and IE:

function addBookmark(title, url) {
        if (window.sidebar) { // firefox
              window.sidebar.addPanel(title, url,"");
        } else if( document.all ) { //MSIE
                window.external.AddFavorite( url, title);
        } else {
               alert("Sorry, your browser doesn't support this");
        }
}

<a href="javascript:addBookmark('My Site','http://www.mysite.com')>Add bookmark</a>
用心笑 2024-08-01 01:05:57

有多种方法可以使用 Javascript 添加收藏夹,尽管有些浏览器根本不支持它。 您可以在此处找到一个声称提供跨浏览器方法的脚本添加书签,但实际上只是告诉用户按什么键来打开 Firefox 上的“添加书签”对话框。

在所有情况下,javascript 所能做的就是打开添加书签对话框,用户仍然需要自己手动添加书签。

There are ways to add favorites using Javascript, although some browsers don't support it at all. You can find a script here that claims to offer a cross-browser method of adding a bookmark, but actually just tells the user what to press to open the Add Bookmark dialog on Firefox, for example.

In all cases, all that javascript can do is open the add bookmark dialog, and the user will still have to manually add the bookmark themselves.

嗼ふ静 2024-08-01 01:05:57

检查以将网站添加到用户的书签

Check this for adding the site to the user's bookmarks

胡大本事 2024-08-01 01:05:57

您可以使用此代码将您的页面设置为用户的页面主页。

You can use this code to set your page as the user's homepage.

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