2014-12-02 40 views
1

我需要創建一個簡單的mailto功能,因此當我點擊html文件時,它會彈出默認的電子郵件應用程序,其中包含郵件「準備就緒」。我認爲mailto ID上的點擊事件就足夠了,但它並沒有解僱。我該怎麼辦?僅供參考,我不希望用戶點擊超鏈接。我打算刪除它。簡單的mailto功能,可以從html文件組成一封電子郵件

<script type="text/javascript"> 
 

 
\t $(document).ready(function(){ 
 
\t \t $("#mymailto").click(); 
 
\t }); // document.ready 
 

 
</script>
<!DOCTYPE HTML> 
 
<HTML> 
 
<HEAD> 
 
\t <TITLE>Your Title Here</TITLE> 
 
\t <META http-equiv="X-UA-Compatible" content="IE=edge"> 
 
\t <META http-equiv='cache-control' content='no-cache'> 
 
\t <META http-equiv='expires' content='0'> 
 
\t <META http-equiv='pragma' content='no-cache'> 
 
\t <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> 
 

 
</HEAD> 
 
<BODY> 
 
\t <a href="mailto:[email protected]" id="mymailto" >email</a> 
 
</BODY> 
 

 
</HTML>

回答

1

只需使用document.location.href="mailto:[email protected]";

+0

很酷。無論如何要添加style =「display:none」到這個? – bane3977 2014-12-02 11:45:57

+0

你的意思是「添加'style =」display:none「'這個」?因爲它應該替換你的$(「#mymailto」)。click();'。沒有html標籤是必需的。 – 2014-12-03 01:41:07

相關問題