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.
我正在开发一个在nwjs下运行的基于javascript React的应用程序。
我的任务是:单击按钮时,在对话框中显示可滚动的说明,用户可以将其拖到第二个监视器上,这样他们就可以按照我的新对话框中的说明在主窗口中完成工作。
我只知道如何用 React 制作模态对话框。如何制作非模态对话框,以便用户在主窗口中工作时可以根据需要滚动浏览说明?
您创建的窗口会产生反应,必须留在浏览器窗口中。
调用新的子窗口,以便您获得可以在桌面上拖动的新窗口。
Window.open(url, [options], [callback])
查看文档