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.
我在应用程序页面上有一个名为复制 url 的区域按钮。
我需要创建一个动态操作,以便在单击按钮时,使用 javascript 或任何其他表达式复制页面的当前 url。
我尝试创建一个,但不确定我应该在表达式部分写什么。
假设P13_URL页面上有该项目,并且单击该按钮时会使用当前 URL 填充该项目。
P13_URL
按钮的动态动作将是
document.getElementById("P13_URL").value = document.URL;
就这样。