如何使用用户脚本从页面源获取值并将值放入另一个文本字段

How to get value from page source and put the value to another text field using userscript

我想从下面的代码中获取值。

<input name="button" type="button" class="button" onclick="refresh();" id="check_code" style="font-size:15pt; width:80px; height:25px; color:white; border:none;background-color: #845f5f;text-shadow: 1px -1px 0px black;box-shadow: inset 2px -1px 4px 0px black;" readonly="readonly" oncopy="return false" value="my value">

并将获得的值粘贴到下面的文本字段中。

from this
<input type="text" name="verification_code" id="verification_code" style="width:150;">

to this
<input type="text" name="verification_code" id="verification_code" style="width:150;" value="my value">

这是我正在使用的代码,但由于某种原因无法正常工作。

// @name     autoinput
// @match    *://MY_SERVER/*
// @require  https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @grant    GM_addStyle
// ==/UserScript==
//- The @grant directive is needed to restore the proper sandbox.

function test()
{
    var element;
    element = document.getElementById("check_code").getAttribute("value");
    document.setElementById("verification_code").value = element;
}

document.setElementById() 不是函数

var value = document.getElementById("source").value;
document.getElementById("dest").value = value;
<input type="text" id="source" value="value" />
<input type="text" id="dest" />