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.
如何在 PowerApps 中向表单添加按钮。单击该按钮应导航到提供的超链接。
假设您有一个名为“TextInput1”的文本框和一个名为“Button1”的按钮。
在按钮的“选择”事件中,您将放置
Launch(TextInput1.Text);
如果您宁愿关闭 PowerApp 并重定向到不同的 URL,您可以这样做...
Exit(Launch("https://google.com"));
或者,如果您想从文本框中提取位置...
Exit(Launch(TextInput1.Text));