上面的代码使用文本格式的后置代码数据填充该字段,效果很好。然后我想将该字段中的数据复制到另一个字-6ren">
gpt4 book ai didi

javascript - 将动态字段值复制到另一个字段

转载 作者:行者123 更新时间:2023-12-03 12:21:56 24 4
gpt4 key购买 nike

我正在运行一个数据库应用程序(sql 后端)。一种特定形式使用以下方式调用另一个表中的值:

<td class=NewSalesOpCompany id="contactPostCode"><#externalfield SQL="Select POSTALCODE from wce_sales s join wce_linkto l on s.UNIQUEID = l.luniqueid left join wce_contact c on l.LEntityID = c.UNIQUEID where (s.UNIQUEID = '<#field field=uniqueid  noedit static>')" ></td>

上面的代码使用文本格式的后置代码数据填充该字段,效果很好。然后我想将该字段中的数据复制到另一个字段。我已尝试以下方法,但未能使其正常工作。

    <script language=javascript>

function copyPostCode() {
var parentPOSTALCODE=document.getElementById('contactPostCode');
var oppPOSTCODE=document.forms[0]._POSTCODE;
if (oppPOSTCODE != parentPOSTALCODE)
{ oppPOSTCODE.value = parentPOSTALCODE.value;}

}
</script>

执行该函数时,我通过 Firefox 收到“parentPOSTALCODE.value is undefined”错误。我在这方面有点新手,所以任何帮助将不胜感激。

最佳答案

试试这个:

<script language=javascript>

function copyPostCode() {
var parentPOSTALCODE=document.getElementById('contactPostCode');
var oppPOSTCODE=document.forms[0]._postcode;
if (oppPOSTCODE != parentPOSTALCODE)
{
oppPOSTCODE.value = parentPOSTALCODE.innerText;
}
}
</script>

这是示例 FIDDLE

关于javascript - 将动态字段值复制到另一个字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24406158/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com