获取下拉选择的值
我有以下下拉脚本,
<xsl:element name="optgroup">
<xsl:for-each select="$parent/child::node">
<xsl:element name="option">
<xsl:attribute name='Value' >
<xsl:value-of select="@id"/>
</xsl:attribute>
<xsl:value-of select="@nodeName"/>
</xsl:element>
</xsl:for-each>
</xsl:element>
我从 10 个元素中选择一个元素。如何获取 input[type=button]
点击事件中所选元素的值?
i have the following script for dropdown
<xsl:element name="optgroup">
<xsl:for-each select="$parent/child::node">
<xsl:element name="option">
<xsl:attribute name='Value' >
<xsl:value-of select="@id"/>
</xsl:attribute>
<xsl:value-of select="@nodeName"/>
</xsl:element>
</xsl:for-each>
</xsl:element>
i am selecting one element out of 10 elements. how to get the value of selected element on input[type=button]
click event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您已经发布了 XSLT 的片段,并将问题标记为 XSLT,但是对 HTML 文档中的点击事件做出反应是客户端脚本的工作,而不是 XSLT 的工作。
假设您的
optgroup
元素是带有name="select1"
的select
元素的一部分,并且select
和input
按钮位于带有name="form1"
的form
内部,您可以使用例如来提醒所选值。
Well you have posted a snippet of XSLT and tagged the question as XSLT but reacting on click events in a HTML document is a job for client-side script, not for XSLT.
Assuming your
optgroup
element is part of aselect
element withname="select1"
and both theselect
and theinput
button are inside of aform
withname="form1"
you can use e.g.to alert the selected value.