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.
在 QWebView 中,当页面的 DOM 结构发生变化时,会发出哪个信号?例如,ajax 表单可以在现有页面上生成新的 DOM 元素,而无需重新加载 URL 或其他内容。
没有专门针对 DOM 更改发出信号。解决该问题的一种方法是,当我知道该事件何时发生时,我在加载页面时发出 loadFinished 信号后立即启动 QTimer,并将其超时信号连接到将再次发出 loadFinished 信号的函数。QTimer 的超时值是我知道更改发生时应该经过的时间。