開啟,另存新檔,屬性以及將內容複寫到剪貼簿等JS代碼

來源:互聯網
上載者:User
文章目錄
  •  
 

 

■開啟■
<input name=Button onClick=document.all.WebBrowser.ExecWB(1,1) type=button value=開啟>
<OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
■另存新檔■
<input name=Button onClick=document.all.WebBrowser.ExecWB(4,1) type=button value=另存新檔><OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
■屬性■
<input name=Button onClick=document.all.WebBrowser.ExecWB(10,1) type=button value=屬性><OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
■列印■
<input name=Button onClick=document.all.WebBrowser.ExecWB(6,1) type=button value=列印><OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
■版面設定■
<input name=Button onClick=document.all.WebBrowser.ExecWB(8,1) type=button value=版面設定><OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
■重新整理■
<input type=button value=重新整理 name=refresh onclick="window.location.reload()">
■匯入收藏■
<input type="button" name="Button" value="匯入收藏夾" onClick=window.external.ImportExportFavorites(true,);>
■匯出收藏■
<input type="button" name="Button3" value="匯出收藏夾" onClick=window.external.ImportExportFavorites(false,);>
■加入收藏■
<INPUT name=Button2 onclick="window.external.AddFavorite(location.href, document.title)" type=button value=加入收藏夾>
■整理收藏夾■
<INPUT name=Submit2 onclick="window.external.ShowBrowserUI(OrganizeFavorites, null)" type=button value=整理收藏夾>
■查看原檔案■
<INPUT name=Button onclick=window.location = "view-source:" + window.location.href type=button value=查看源檔案>
■語言設定■
<INPUT name=Button onclick="window.external.ShowBrowserUI(LanguageDialog, null)" type=button value=語言設定>
■前進■
<INPUT name=Submit onclick=history.go(1) type=submit value=前進>
■後退■
<INPUT name=Submit2 onclick=history.go(-1) type=submit value=後退>

<Script Language=Jscript>
alert(clipboardData.getData('text'))  //取得當前的剪下版內容
window.clipboardData.setData('text','指定資料') //自訂剪下版中的內容
alert(clipboardData.getData('text')) //在次取得當前剪下版內容
</Script>

 

 

 

<BODY>
<script>
function copyToClipBoard()
{
 var clipBoardContent=window.document.title;
 clipBoardContent+='/r/n' + window.document.location.href;
 window.clipboardData.setData("Text",clipBoardContent);
 alert("複製成功,請粘貼到你的QQ/MSN上推薦給你的好友!/r/n/r/n內容如下:/r/n" + clipBoardContent);
}
</script>
                <INPUT title='點擊複製標題和地址到剪貼版,直接在MSN/QQ上粘貼即可.' type=button value='點擊複製本頁地址,傳給QQ/MSN上的好友' onclick='copyToClipBoard()'>

</BODY>

<script>
function oCopy(obj){
obj.select();
js=obj.createTextRange();
js.execCommand("Copy")
}
</script>
 
<input name="intext" id="intext" value="複製的內容" size="80" maxlength="200">
<input type=button value="複製" onclick="oCopy(intext);" />

 

 

 

<script language="javascript">
function copyText(id) {
 try{
  var targetText = document.getElementById(id);
  targetText.focus();
  targetText.select(); 
  var clipeText = targetText.createTextRange(); 
  //if (clipeText!=null) alert(clipeText.htmlText);
  clipeText.execCommand("Copy");
 }catch(e){}
}
</script>
<form>
<input type="text" id="sdfa" value="http://www.souv.cn">
<input type="button" value="複製" onclick="copyText('sdfa');this.value='完成';this.disabled='true'">
</form

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.