Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

document.execCommand('copy') not working

  • 4 답장
  • 17 이 문제를 만남
  • 150 보기
  • 최종 답변자: bansal5575

more options

I am trying this small piece of code:

<textarea onselect="document.execCommand('copy');">Hello I'm some text</textarea>

It seems to work for Chrome but not for firefox. Does firefox not provide a functionality for copying contents to clipboard. I fyes, what are they because I am definately missing them.

I am getting this error on Browser console: 20:43:49.409 NS_ERROR_FAILURE: 1 try1.html:1:0

Any solutions for copying text to clipboard from firefox browsers?

I am trying this small piece of code: <textarea onselect="document.execCommand('copy');">Hello I'm some text</textarea> It seems to work for Chrome but not for firefox. Does firefox not provide a functionality for copying contents to clipboard. I fyes, what are they because I am definately missing them. I am getting this error on Browser console: 20:43:49.409 NS_ERROR_FAILURE: 1 try1.html:1:0 Any solutions for copying text to clipboard from firefox browsers?

선택된 해결법

Hi bansal5575, did you follow the link to the bug tracking system? It is scheduled to appear in Firefox 41, which is about 8-9 weeks away from release.

https://developer.mozilla.org/Firefox/Releases/41#InterfacesAPIsDOM

You can test Firefox 41 in its current early form to see whether it meets your needs: https://www.mozilla.org/firefox/developer/

You probably should make a backup of your Firefox profile first. This article has tips on that: Back up and restore information in Firefox profiles.

문맥에 따라 이 답변을 읽어주세요 👍 2

모든 댓글 (4)

more options

Firefox doesn't allow access to the clipboard via scripts. Use keyboard shortcuts if the buttons on the web page or other methods aren't working.

  • Copy: Ctrl+C or Ctrl+Insert (Mac: Command + C)
  • Paste: Ctrl+V or Shift+Insert (Mac: Command + V)
  • Cut: Ctrl+X or Shift+Delete (Mac: Command + X)

developer.mozilla.org/en-US/Firefox/Releases/29/Site_Compatibility#Security ... See this bug:

  • bug 1012662 - Allow document.execCommand("cut"/"copy") to be used within the context of user generated events
more options

When Google Chrome seems to be providing a solution for this, why is there no support in firefox? This use case is a very important feature for one of the apps that I am developing and users won't be pleased having this feature only in chrome and not in firefox.

more options

선택된 해결법

Hi bansal5575, did you follow the link to the bug tracking system? It is scheduled to appear in Firefox 41, which is about 8-9 weeks away from release.

https://developer.mozilla.org/Firefox/Releases/41#InterfacesAPIsDOM

You can test Firefox 41 in its current early form to see whether it meets your needs: https://www.mozilla.org/firefox/developer/

You probably should make a backup of your Firefox profile first. This article has tips on that: Back up and restore information in Firefox profiles.

more options

Thanks jscher2000, It is indeed working in Firefox41.