English 中文(简体)
• 如何将现有的URL自动复制到第二个网络浏览器或档案
原标题:How to automatically copy the current URL into a second web-browser or a file
  • 时间:2011-11-01 03:28:03
  •  标签:
  • java
  • html

Here is what I would like to be able to do: In a web-browser I want to add a button that when I click on it, it copies the current URL address into a file or opens another web-browser and copies it there. I don t know what programming language should be used for this, I am a novice in this area and am looking for pointers on what programming language is appropriate for this and how it can be done. Any web-browser, IE, Chrome, or Firefox is ok to be used for this. If it is not possible to put the buttom in the web-browser, what is any otherway that it can be done?

最佳回答

书籍工具栏中的内容是否足够?

如果有的话,则以URL创立一个捷径/标:

javascript:window.open(document.URL);undefined;

并且将书目作为工具。

第一部分打开了现有窗口的URL的新窗口,un Defin。 部分是目前的窗口没有被更换(目前似乎需要吗?”

经测试,在Peth、Khat和IE工作,但IE需要使该掩体解体。

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签