gpt4 book ai didi

javascript - VB.net Geckofx 45 执行 jquery.hide() 没有效果

转载 作者:行者123 更新时间:2023-11-29 21:09:05 25 4
gpt4 key购买 nike

我尝试了以下文章 about executing javascript.

但是if-else语句好像没有获得jquery的能力。

     Dim jQuery As JQueryExecutor
jQuery = New JQueryExecutor(GeckoWebBrowser1.Window)

If (jQuery.ExecuteJQuery("typeof jQuery == 'undefined'").ToBoolean) Then
MsgBox("no jquery here")
else
jQuery.ExecuteJQuery("$(#" + aName + ").hide();")
end if

这是我忘记的东西吗?错误是这个enter image description here

最佳答案

我不完全确定这是否是触发错误的原因,但看起来您的 jQuery 语法有问题;您通过 ID 选择,jQuery 将其作为字符串参数,但您的 .ExecuteJQuery() 行不包含 # 作为字符串。

jQuery.ExecuteJQuery(jQuery.ExecuteJQuery("$('#" + aName + "').hide();")

我知道引号会有点困惑,也许这就是问题所在?

关于javascript - VB.net Geckofx 45 执行 jquery.hide() 没有效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42568754/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com