问题标签 [getattribute]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
197 浏览

php - php/Html 文件中的 getAttribute

我有一个 PHP 文件,我想用div id.

这里的代码:

我想提取channelnamePHP 函数调用 ( load_video) 之前的值来使用$channelname

我试过这个:

但它不起作用。

0 投票
1 回答
818 浏览

c# - C# Access 通过 HtmlElement 标记属性

有一个像这样的html:

我想通过这段代码访问 div 的样式;

但是link.innerhtml给了我 div 标签的内部,而不是 div 自己的。Messag.Box 的输出文本为:

我也试过这个:

但它没有用。

如何通过同一个 div 的 id 访问 div 属性?

0 投票
1 回答
1395 浏览

vb.net - VB.NET 在文本框中输入文本,然后按发送 webbrowser

我正在从列表框中调用大量网页,当每个页面加载时,我想在计时器转到下一页之前向用户发送一条消息。该页面包含一个表单,该表单具有一个文本框和一个发送表单内容的按钮。下面是我的代码和我要提交的表单。

问题是,一旦计时器进入下一个网页,它就会将信息添加到文本框并单击按钮,但它会在加载下一页时在最后一分钟完成,而且还不够是时候提交表格了。我试过增加计时器的时间,但这没有用。有人可以指出我做错了什么吗?提前致谢!

我的代码:

表格:

0 投票
1 回答
154 浏览

php - 来自 RSS 源的 getAttribute('label')

我想从此 rss 提要中获取类别标签,但无法完成。其他一切都完美无缺。

RSS 提要代码:

我的 PHP 小部件代码:

我尝试添加 getAttribute('label'),但我根本无法让它工作。我很想在 foreach 循环中添加一行。我认为解决方案非常简单,但是经过数小时的尝试和搜索后我无法得到它:(

0 投票
1 回答
545 浏览

wordpress - 从 wordpress RSS 提要中的节点获取属性缩略图

我一直在努力让这种看似简单的代码和平工作。我正在从 wordpress 网站加载 rss,除了缩略图之外,一切都很好。由于在 XML 中它们被设置为属性而不是 nodeValue 我似乎无法导入它们。(我真的尝试了很多)

任何帮助将不胜感激。

提前非常感谢!

0 投票
2 回答
3058 浏览

python - 属性与描述符与 __getattribute__ 的用例

问题是指在哪个用例中最好使用哪一个,而不是技术背景。

在 python 中,您可以通过属性描述符魔术方法来控制属性的访问。在哪个用例中哪一个是最 Pythonic 的?它们似乎都具有相同的效果(请参见下面的示例)。

我正在寻找类似的答案:

  • 属性:应该在……的情况下使用。</li>
  • Descriptor:在……的情况下,应该使用它而不是属性。
  • 魔术方法:仅在……时使用。

例子

用例是可能无法在__init__方法中设置的属性,例如,因为该对象尚未出现在数据库中,但稍后会出现。每次访问该属性时,都应尝试设置并返回。

作为在 Python shell 中使用 Copy&Paste 的示例,有一个类希望仅在第二次被要求时才显示其属性。那么,哪一种是最好的方法,或者有不同的情况,其中一种更可取?以下是实现它的三种方法:

拥有财产::

__getattribute__::

描述符::

每一个都有这种行为::

0 投票
1 回答
1969 浏览

c# - 如何getAttribute("onclick")

例如我有这个html代码:

而且我需要获取onclick的属性,因为我可能会得到更多的链接,我必须找到它们之间的区别。在我看来,获取 onclick 属性只是一种方式。但是,如果我从 HTMLElement 中获取属性(“onclick”),它将返回 System.__ComObject。

是否知道如何从 webBrowser 读取 onclick 值?

0 投票
2 回答
3029 浏览

jquery - 使用 jQuery 获取第一个子元素的数据属性

我正在尝试获取 ul 中第一个和最后一个 li 的数据属性。类似于...的东西

有人会好心地给我一个正确的方向吗?

0 投票
0 回答
141 浏览

selenium - 未找到 SVG 元素硒 RC

我正在使用 selenium RC 的getAttribute方法来获取 SVG 元素的颜色。HTML 代码如下所示:

getAttribute方法给出错误为不正确xpath

我使用如下:

错误:

0 投票
1 回答
435 浏览

javascript - Netsuite getAttribute throws an error

What I am trying to accomplish is to get item information from the internal ID passed to getAttribute but I am getting the following error.

Here is a sample of the code:

Doing the following does not seem to change anything as it still gives me the same error

This is in a presentation tab page and found the following info in the Netsuite help section

getAttribute tag on Presentation tab throws error Sometimes using the getAttribute() tag in a Presentation tab can throw error %u2018Error processing dynamic tag getAttribute('item',9047,'storeurl') %u2018. In that case you have to use declareAttribute() to display the embedded tag on your Presentation tab. On the Presentation tab > Meta Tag HTML area, just add:

but did not seem to help

I'm sure I am just missing something simple but have been bashing my head against my desk for a few hours now trying to figure this out and