`

window.external 常见的操作

 
阅读更多

 

<INPUT onclick='window.external.ImportExportFavorites(true,"http://localhost");'type=buttonvalue=导入收藏夹>   
<INPUT onclick='window.external.ImportExportFavorites(false,"http://localhost");'type=buttonvalue=导出收藏夹>   
<INPUT onclick="window.external.ShowBrowserUI('OrganizeFavorites', null)"type=buttonvalue=整理收藏夹>   
<INPUT onclick="window.external.ShowBrowserUI('语言Dialog', null)"type=buttonvalue=语言设置>   
<INPUT onclick="window.external.AddFavorite('http://blog.csdn.net/Opossum/', '研究,研讨')"type=buttonvalue=加入收藏夹>   
<INPUT onclick="window.external.addChannel('http://blog.csdn.net/Opossum/')"type=buttonvalue=加入到频道>     

有联系:  
<INPUT onclick="the.style.behavior='url(#default#habitatpage)'; the.setHomePage('http://blog.csdn.net/Opossum/')"type=buttonvalue=设成主页>  

history...  

<INPUT onclick=history.go(1) type=buttonvalue=前进>  
<INPUT onclick=history.go(-1) type=buttonvalue=后退>   <INPUTonclick=history.forward() type=buttonvalue=前进>  
<INPUT onclick=history.behind() type=buttonvalue=后退>  

document.execCommand...  

<INPUT onclick="document.execCommand('Cut')"type=buttonvalue=剪切>  
<INPUT onclick="document.execCommand('Copy')"type=buttonvalue=拷贝>  
<INPUT onclick="document.execCommand('Paste')"type=buttonvalue=粘贴>   
<INPUT onclick="document.execCommand('Undo')"type=buttonvalue=撤消>  
<INPUT onclick="document.execCommand('Delete')"type=buttonvalue=删除>   
<INPUT onclick="document.execCommand('Bold')"type=buttonvalue=黑体>  
<INPUT onclick="document.execCommand('Italic')"type=buttonvalue=斜体>  
<INPUT onclick="document.execCommand('Underline')"type=buttonvalue=下划线>  
<INPUT onclick="document.execCommand('stop')"type=buttonvalue=停止>  
<INPUT onclick="document.execCommand('SaveAs')"type=buttonvalue=保存>  
<INPUT onclick="document.execCommand('Saveas',false,'c:\\test.htm')"type=buttonvalue=另存为>   
<INPUT onclick="document.execCommand('FontName',false,fn)"type=buttonvalue=字体>   
<INPUT onclick="document.execCommand('FontSize',false,fs)"type=buttonvalue=字体大小>   
<INPUT onclick="document.execCommand('refresh',false,0)"type=buttonvalue=刷新>   

window.location...  

<INPUT onclick=window.location.reload() type=buttonvalue=刷新 title=refresh>   
<INPUT onclick='window.location="view-source:" + window.location.href'type=buttonvalue=查看源文档 title=Button7>   

WebBrowser.ExecWB...  

<OBJECTclassid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0id=WebBrowserwidth=0></OBJECT><br/>  
<inpu ttitle=ButtononClick=document.all.WebBrowser.ExecWB(2,1) type=buttonvalue=关闭所有><br/>  
<inpu ttitle=ButtononClick=document.all.WebBrowser.ExecWB(4,1) type=buttonvalue=另存为><br/>  
<inpu ttitle=ButtononClick=document.all.WebBrowser.ExecWB(6,1) type=buttonvalue=打印><br/>  
<inpu ttitle=ButtononClick=document.all.WebBrowser.ExecWB(6,6) type=buttonvalue=直接打印><br/>  
<inpu ttitle=ButtononClick=document.all.WebBrowser.ExecWB(7,1) type=buttonvalue=打印预览><br/>  
<inpu ttitle=ButtononClick=document.all.WebBrowser.ExecWB(8,1) type=buttonvalue=PAGE设置><br/>  
<inpu ttitle=ButtononClick=document.all.WebBrowser.ExecWB(10,1) type=buttonvalue=属性><br/>  
<inpu ttitle=ButtononClick=document.all.WebBrowser.ExecWB(17,1) type=buttonvalue=全选><br/>  
<inpu ttitle=ButtononClick=document.all.WebBrowser.ExecWB(22,1) type=buttonvalue=刷新><br/>  
<inpu ttitle=ButtononClick=document.all.WebBrowser.ExecWB(45,1) type=buttonvalue=关闭>  
分享到:
评论

相关推荐

    14个有用的JS代码.doc

    这些代码展示了JavaScript如何与浏览器的内置功能进行交互,提供了用户友好的界面来执行常见的浏览操作。值得注意的是,这些功能可能在不同的浏览器或非IE环境中行为有所不同,因为它们依赖于特定的ActiveX对象,这...

    js页面事件大全.pdf

    - `window.external.ImportExportFavorites()` 进行收藏夹的导入和导出操作。 4. **浏览历史(History)**: - `history.go()` 和 `history.forward()` 用于导航到历史记录中的前一个或下一个页面。 - `history....

    Jquery实现设为首页和加入收藏功能

    Firefox使用`window.sidebar.addPanel`,而IE则使用`window.external.AddFavorite`。如果浏览器不支持这些方法,我们会给出一个提示。 需要注意的是,由于现代浏览器的安全策略,上述方法可能在某些情况下不再有效...

    制作加入收藏夹的链接

    } else if (window.external) { window.external.AddFavorite(window.location.href, document.title); } else { alert('请手动将此页面加入收藏夹!'); }"&gt;加入收藏夹 ``` 这段代码创建了一个链接,当用户点击时...

    delphi与JavaScript进行交互,获取JS端返回值

    在IT领域,跨语言交互是常见的需求之一,特别是在桌面应用(如Delphi开发的应用)与网页或Web服务之间。本文将深入探讨如何在Delphi环境中与JavaScript进行交互,特别是如何从JavaScript端获取返回值,这在实现桌面...

    设为首页、加为收藏js样例

    window.external.AddFavorite(url, title); } else if (window.opera && window.print) { // Opera opera.bookmarks.add({title: title, url: url}); } else { alert("抱歉,您的浏览器不支持此功能,请手动...

    JS 设置首页和收藏本站

    window.external.AddFavorite(window.location.href, document.title); } else if (window.opera && window.print) { // Opera opera.bookmarks.add({ title: document.title, url: window.location.href }); ...

    javaScript一些常用功能

    这里使用了`window.external.ShowBrowserUI`方法,传入参数指定要执行的操作。 ### 8. 查看源代码 查看网页源代码的功能可以通过以下代码实现: ```html &lt;INPUT name="Button" onclick="window.location='view-...

    jquery-external-links:检测外部链接并执行常见操作

    检测外部链接并执行常见操作 用法 $('a').externalLinks(); 默认情况下,插件为所有外部链接添加以下属性; 目标=“_blank” 类=“外部” 标题="打开新窗口" 设置 $('a').externalLinks({ "internalDomain": ...

    JavaScript 50道面试题及答案.docx

    window 对象有多个属性成员,包括 window.event、window.document、window.history、window.screen、window.navigator、window.external 等。window 对象的属性成员可以帮助我们获取浏览器的信息、操作文档、处理...

    ASP常见问题及解答

    &lt;a href="#" onclick="window.external.showBrowserUI('PrivacySettings', null)"&gt;Internet选项设置 ``` #### 10. 导航功能说明 ##### 10.1 前进至下一个页面 **实现方式:** 使用 `history.go(1)` 或 `history....

    常用JS代码提供下载

    &lt;INPUT name=Button2 onClick="window.external.AddFavorite(location.href, document.title)" type=button value=ղؼ&gt; ``` - **功能**: 将当前页面添加到收藏夹。 - **实现方式**: 使用 `AddFavorite` 方法,并...

    webBrowser 禁用消息框alert 并且获得内容

    新的函数在被调用时,会将传入的字符串参数通过 `window.external.alertMessage` 方法传递给宿主程序。 3. **宿主程序中的处理函数**:接下来需要定义一个方法来接收并处理从网页脚本传递过来的信息。 ```csharp ...

    Javascript中最常用的经典技巧

    4. **窗口操作**:`window.location.reload()`用于刷新当前页面,`window.location.href`获取或设置当前页面的URL,而`window.open`可以打开新的窗口或标签页。 5. **浏览器接口**:`window.external`接口提供了与...

    html事件汇总

    此外,还有几个按钮使用了`window.external`对象,这是一个IE浏览器提供的接口,允许JavaScript与外部对象(如ActiveX控件)进行交互。例如,导入和导出收藏夹、添加到收藏夹以及整理收藏夹等功能。 `window....

    常用的javascript

    6. 添加到收藏夹:通过`window.external.AddFavorite(url, title)`方法,但此方法仅在Internet Explorer中有效。 7. 链接不显示下划线:CSS样式`text-decoration: none;`可去除链接的下划线,或者在JavaScript中...

    JavaScript 50道面试题和答案.docx

    - `window.external`(仅在IE中存在)允许JavaScript与外部应用交互。 以上是JavaScript面试中常见的知识点,掌握这些将有助于理解JavaScript的工作原理和提升开发能力。在实际项目中,理解并熟练运用这些概念是...

    JavaScript常用语句精选

    本文档中的代码片段虽然较为特殊且不易理解,但其中涉及到了一些关键的概念,如通过 `document.all` 访问页面元素、使用 `ExecWB` 方法进行浏览器操作以及通过 `window.external` 对象执行特定任务等。这些内容对于...

    加入收藏源代码,设为首页源代码

    在网页开发中,"加入收藏"和"设为首页"是常见的用户交互功能,它们提升了网站的用户体验,方便用户快速访问他们喜欢的站点。这两项功能的实现主要依赖于JavaScript和HTML,有时也会结合浏览器的特定API。接下来,...

Global site tag (gtag.js) - Google Analytics