hpricot 添加属性到 HTML 标签?
有人可以解释一下如何使用 Ruby 和 Hpricot gem 将自定义属性添加到 HTML 标记吗?
我有一个如下所示的标签:
<div class="test" id="tag1" style="">
我想添加一个名为“Readable=0”的自定义整数属性,因此它看起来像这样:
<div class="test" id="tag1" style="" readable=0>
这可能吗?
Can someone please explain how to add a custom attribute to an HTML tag using Ruby with Hpricot gem?
I have a tag that looks like this:
<div class="test" id="tag1" style="">
and I want to add a custom integer attribute called 'Readable=0' so it looks like this:
<div class="test" id="tag1" style="" readable=0>
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
或者如果您有
Hpricot::Elements
:Try:
Or if you have a
Hpricot::Elements
: