1
所以我必須把信息輸入到某個網站的表格中,我們將其稱爲websiteA。我必須在州的另一個網站上輸入相同的信息,我們將其稱爲websiteB。在單獨的網站上將表單字段數據從一種表單複製到另一種表單中?
我正在尋找一種方法來簡化流程,並有從websiteA自動放置到匹配的表單字段上websiteB的信息。這隻適用於我自己的電腦上的本地使用。
我是新來的過程,並一直在閱讀有關不同的方式來做到這一點。我目前正試圖在Tampermonkey做這件事,因爲這似乎是我做一些研究的最佳選擇。
到目前爲止,下面是我的。作爲一個例子,我只使用一個需要名稱的表單域。元素的ID是name
。
// ==UserScript==
// @name Form Copier
// @namespace http://localhost
// @match https://websiteA.com
// @match https://websiteB.com
// @grant GM_getValue
// @grant GM_setValue
// ==/UserScript==
if(document.URL.indexOf("https://websiteA.com") >= 0){
window.open('https://websiteB.com'); //opens the destination website
document.getElementById("name").value = GM_setValue("name");
}
else if(document.URL.indexOf("https://websiteB.com") >= 0){
document.getElementById("name").value = GM_getValue("name");
}
這是目前我所擁有的,它根本無法正常工作。我試圖尋找更好的方法來完成這件事,並沒有任何運氣。如果你們中的任何人都能幫助我,那將不勝感激。