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.
是否有任何可能的方法来检查 webBrowser1 中是否有任何 jquery 对话框处于活动状态?这是我想 使用 c# webBrowser 类检查的对话框的外观,这不是在简单的 html 网页中
你试过这个 -
if($(".ui-dialog").is(":visible")) { //dialog is open }
用这个:
$("#mydialog").dialog( "isOpen" )