我正在使用 jQuery UI 对话框小部件。我正在创建两个按钮“开始/取消”。我需要编写一些导致单击“开始”按钮的代码。jQuery UI 创建以下标记:
<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button" aria-disabled="false"><span class="ui-button-text">Start</span></button>
所以,基本上,我想要一个选择器,它根据子元素的(跨度)文本(“开始”)选择父元素(按钮)。有没有选择器可以做到这一点?
谢谢,杰罗姆