window.sidebar.addPanel追加的书签默认是在侧栏加载的,怎么通过js设置它不在侧栏加载?
1、实现代码
<script> function addfavorite() { if (document.all) { window.external.addFavorite('URL','登录画面'); } else if (window.sidebar) { window.sidebar.addPanel('登录画面', 'URL', ""); } } </script>
2、上面的代码实现了追加书签的功能,但是追加的书签默认是在侧栏加载的,请问如何通过js来设置书签的属性,使追加的书签能够在当前标签页中打开,而不是在侧栏中打开。或者能够像firefox3.6版本那样,在弹出的书签追加对话框上,有个复选框“在侧栏中载入此书签”,让用户自己做选择。
cor-el மூலமாக
தீர்வு தேர்ந்தெடுக்கப்பட்டது
firefox too bad
Read this answer in context 👍 0All Replies (4)
You can ask visitors to press Ctrl + D to bookmark the current page. Using that JavaScript will always create a bookmark that opens in the sidebar and there is no other method to create a bookmark.
Thank you very much
You're welcome
தீர்வு தேர்ந்தெடுக்கப்பட்டது
firefox too bad