Trang web này sẽ có chức năng hạn chế trong khi chúng tôi trải qua bảo trì để cải thiện trải nghiệm của bạn. Nếu một bài viết không giải quyết được vấn đề của bạn và bạn muốn đặt câu hỏi, chúng tôi có cộng đồng hỗ trợ của chúng tôi đang chờ để giúp bạn tại @FirefoxSupport trên Twitter và /r/firefox trên Reddit.

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

Can't Copy From New Google Calculator Applet

  • 2 trả lời
  • 6 gặp vấn đề này
  • 8 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

When I enter a mathematical expression into Googles search, it now brings up a javascript calculator that shows the result.

For example, when I search for "2+3" the calculator appears above the search results, showing "5" in the calculation window.

Unfortunately, while I the calculator appears to perform the indicated arithmatic, I'm unable to select the result to copy it from the calculator and paste it into the document I'm editing.

The cursor changes to the I-bar when it's over the result field, but the text cannot be selected.

It works fine in Chrome.

Upgrading Firefox to 14.0.1 and Java to 7.0.50.255 didn't help.

When I enter a mathematical expression into Googles search, it now brings up a javascript calculator that shows the result. For example, when I search for "2+3" the calculator appears above the search results, showing "5" in the calculation window. Unfortunately, while I the calculator appears to perform the indicated arithmatic, I'm unable to select the result to copy it from the calculator and paste it into the document I'm editing. The cursor changes to the I-bar when it's over the result field, but the text cannot be selected. It works fine in Chrome. Upgrading Firefox to 14.0.1 and Java to 7.0.50.255 didn't help.

Tất cả các câu trả lời (2)

more options

Some script must be blocking the result from getting focus. Annoying. Perhaps only temporary?

As a workaround, you can retrieve the result using a bookmarklet, a snippet of code saved as a bookmark on the Bookmarks Toolbar.


javascript:var txt=document.getElementById("cwotbl").textContent; txt=txt.replace(/\s/g, ""); window.prompt("Calculator result", txt); void 0;

To create the bookmarklet:

  1. Copy the above code to the clipboard (it's all 1 line).
  2. Right-click your bookmarks toolbar and choose New Bookmark.
  3. Click in the Location and paste the code.
  4. Choose a short name for the bookmark and click Add.
  5. Test on your Google results page. You can copy the result from the dialog.

If you find it too inconvenient, then we could try to develop a better workaround.

more options

That is caused by using -moz-user-select: none; instead of -moz-user-select: -moz-none;
So Google needs to fix this for Firefox.

.cwmd { -moz-user-select: none; }
-moz-none Non-standard
    The text of the element and sub-elements cannot be selected, but selection can be enabled on sub-elements using -moz-user-select:text .

Add code to the userContent.css file.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


@-moz-document domain(www.google.com){
 .cwmd { -moz-user-select: -moz-none!important; }
}