Jquery mobile"另存为书签" jquery mobile中的按钮,对于我的图书馆书单,

时间:2015-10-01 15:01:24

标签: jquery mobile ionic-framework

好日子的朋友....请帮我制作一个"另存为书签" jquery mobile中的按钮,对于我的图书馆图书清单,您可以在哪里查看其他页面中的书签图书或删除它们??

该应用程序包含书籍和列表视图,就像书店一样,您点击的任何书籍都可以加入书签

1 个答案:

答案 0 :(得分:0)

尝试这个小功能:

<强> JavaScript的:

  <script type="text/javascript">

  //First, set jQuery in no conflict mode, to avoid conflicts with other libraries
  var $ = jQuery.noConflict();
  //Then proceed with code
  $(document).ready(function() {
    $("#bookmarkme").on("click", function() {
      if (window.sidebar) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(location.href,document.title,"");
      } else if(window.external) { // IE Favorite
        window.external.AddFavorite(location.href,document.title); }
      else if(window.opera && window.print) { // Opera Hotlist
        this.title=document.title;
        return true;
  }
});
</script>

<强> HTML:

<a id="bookmarkme" href="#" rel="sidebar" title="bookmark this page">Bookmark This Page</a>

编辑:

如果您不从服务器上运行IE,IE将显示错误(在file://....

查看时,它不允许通过JavaScript使用JavaScript书签