Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个字段名称,分别是月薪、年薪。我需要在 oracle apex 中编写代码,这样如果我输入月薪,年薪字段应根据添加的月薪自动填充。
最简单的方法是创建一个动态动作,每次都触发,当您的第一个字段发生变化时。作为操作,您选择 JavaScript 并编写函数并用函数的结果填充第二个字段。
var Field1 document.getElementById('PX_FIELD1').value; var Field2 = Field1*12; document.getElementById('PX_FIELD2').value=Field2;
这只是一个示例,但它向您展示了如何使用 javascript 从字段中读取和写入。