How to create an email link using document.execCommand in javascript
How to created a email link for the selected text using document.execCom开发者_如何学Pythonmand method
The following will work:
document.execCommand("CreateLink", false, "mailto:someone@example.com");
精彩评论