ホームページ > ウェブフロントエンド > jsチュートリアル > お気に入りに追加する JS コード (主流のブラウザーに共通)_JavaScript スキル

お気に入りに追加する JS コード (主流のブラウザーに共通)_JavaScript スキル

WBOY
リリース: 2016-05-16 17:33:57
オリジナル
1143 人が閲覧しました

お気に入りを追加するためのすべてのブラウザーに共通の JS コード

コードをコピー コードは次のとおりです:

< スクリプト>
関数 addfavorite()
{
if (document.all)
{
window.external.addFavorite('http://www.XXX.com',' XXX' );
}
else if (window.sidebar)
{
window.sidebar.addPanel('XXX', 'http://www.XXX.com', "") ;
}
}

XXX
開く、名前を付けて保存、属性、印刷など 14 個の JS コード
■更新■
■お気に入りのインポート■
■お気に入りのエクスポート■
■お気に入りの整理■
■オリジナルの表示ファイル■
■言語設定■
■開く■
<入力名=ボタン onClick=document.all.WebBrowser.ExecWB(1,1) タイプ=ボタン値=開く> OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0>
■名前を付けて保存■
340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0>■プロパティ■
340A -11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0>
■印刷■
340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0>
>-340A-11D0 -A96B-00C04FD705A2 height= 0 id=WebBrowser width=0>
■更新■
■お気に入りのインポート■

■お気に入りのエクスポート■

■お気に入りに追加■

■お気に入りの整理■

■元のファイルを表示■

■言語設定■
進む■

■戻る■

- 著者:gatebill 2005 年 11 月 1 日、火曜日 12:42 返信 (0) 引用 (0) Bocai に参加
JS はブラウザー メニュー コマンドを実装します
他の人の Web ページでは、開く、印刷、転送、名前を付けて保存、戻る、このウィンドウを閉じる、右クリックを無効にするなどのブラウザ コマンドが実装されていますが、自分自身ではそれを達成できなかったときに後悔しますか?
?あなたもそれを達成したいですか?ブラウザのコマンドを Web ページに実装できたらどんなに面白いでしょう。
JavaScript コードを使用してブラウザ メニュー コマンドを実装する方法を見てみましょう (次のコードは Windows XP のブラウザでデバッグされています)。


1. [ファイル(F)]メニューのコマンドの実装

1. 〖開く〗コマンドの実装
[形式]: document.execCommand( "open ") [説明] これは、VB やその他のプログラミング設計の Web ブラウザー コントロールのコマンドに似ています。これをベースに考えることもできます。 [例] の間に追加:
Open . 「メモ帳で編集」コマンドの実装
[形式]:location.replace("view-source:" location)
[説明] メモ帳を開き、ページ情報をメモ帳のソースコードで表示します。
[例] の間に追加:
メモ帳編集を使用
3. [名前を付けて保存] コマンドの実装
[形式]: document.execCommand("saveAs")
[説明] Web ページをローカル ディスク上の別のディレクトリに保存します。
[例] の間に追加:
名前を付けて保存 4. [印刷]コマンドの実装
[形式]: document.execCommand("print")
[説明] もちろん、プリンターがインストールされている必要があります。
[例] の間に追加:
Print5 . 〖Close〗コマンドの実装
【書式】: window.close(); return false
【説明】 このウィンドウは閉じられます。
[Example] Add between :
Close this window

2. Implementation of the command in the [Edit (E)] menu
Implementation of the "Select All" command
[Format]: document.execCommand(" selectAll")
[Description] All content in the webpage will be selected!
[Example] Add between :
Select all

3. Implementation of the command in the [View (V)] menu
1. Implementation of the "Refresh" command
[Format]: location.reload() or history.go(0)
[Description] Reopen this page in the browser.
[Example] Add between :
Refresh
or Add:Refresh
2. Implementation of the 〖Source File〗 command
[Format]:location.replace(" view-source:" location)
[Description] View the source code of this web page.
[Example] Add between :
View source file
3. Implementation of the 〖Full Screen Display〗 command
[Format]:window.open(document.location,"url","fullscreen")
[Description] Display this page in full screen .
[Example] Add between :


4. Implementation of the commands in the [Favorites (A)] menu
1. Implementation of the "Add to Favorites" command
[Format]:window.external.AddFavorite('url', '"Website Name")
[Description] Add this page to favorites.
[Example] Add between :
http://oh.jilinfarm.com', 'Hu Mingxin's personal homepage')">Add to Favorites
2. Implementation of the "Organize Favorites" command
[Format]:window.external.showBrowserUI("OrganizeFavorites",null)
[Description] Open the organize favorites dialog box
[Example] Add: Organize favorites


5. [Tools (T) 】Implementation of commands in the menu
Implementation of 〖internet options〗 command [Format]: window.external.showBrowserUI("PrivacySettings",null)
[Description] Open the internet options dialog box .
[Example] Add between :
internet option


6. Implementation of commands in [Toolbar]
1. Implementation of [Forward] command [Format] history.go(1 ) or history.forward()
[Explanation] The browser opens the next page.
[Example] Add:
Forward
Or join:Forward
2 , Implementation of the [Back] command
[Format]: history.go(-1) or history.back()
[Explanation] The browser returns to the previous browsed page.
[Example] Add between :
Back
Or add:Back
3. Implementation of 〖Refresh〗
[Format]:document.reload() Or history.go(0)
[Instructions] Reopen this page in the browser.
[Example] Add between :
Refresh
or Add:Refresh


7. Implementation of other commands
〖Timed shutdown Implementation of this window〗 command [Format]: settimeout(window.close(), closing time)
[Explanation] This window will be closed.
[Example] Add between :
Close this window in 3 seconds
関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート