厚盒插件 - 识别
我将(相当旧的)插件称为“thickbox”,如下所述:
<input type="text" id="RecordType" size="10">
<a id="RecSubTypeHref" href="index.pl?img=true&type=RecSubType" class="thickbox" disabled title='Title goes here'><img border=0 src='images/questionmark.png'></a>
创建thickbox 时,它包含基于查询的内容列表。
使用 JavaScript 或 jQuery,我希望能够访问 type
的值(在上面的示例中 type=RecSubType
)。
I'm calling the (fairly old) plugin "thickbox" as described here:
<input type="text" id="RecordType" size="10">
<a id="RecSubTypeHref" href="index.pl?img=true&type=RecSubType" class="thickbox" disabled title='Title goes here'><img border=0 src='images/questionmark.png'></a>
When the thickbox is created it contains a list of stuff based on the query.
Using JavaScript or jQuery I'd like to be able to access the value of type
(in the example above type=RecSubType
).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现场演示。
太简单了;)
(另请参阅如何在 JavaScript 中获取查询字符串值? 以获取更方便的查询字符串解析方法。)
Live demo.
Too easy ;)
(Also see How can I get query string values in JavaScript? for more handy query string parsing approaches.)