看下面我想要得到的cnhor元素的值,如果它等於 「指南」啓用相應的按鈕。 試過以下,但不能讓它的工作。:( 有一種感覺,我幾乎沒有。 感謝如何啓用元素使用兄弟姐妹jquery
$("button").siblings("a").each(function() {
var b = $(this).text();
var n = $.trim("Guide");
if ($.trim(b) == n) {
$("button").removeAttr("disabled");
}
<button id="Toggle5" disabled="disabled">
Show </button>
<a href="#" id="docsID5" target="_blank">
Guide
</a>
讓我們看看cnhor元素的HTML。 – dotancohen 2012-02-13 07:12:37
你的代碼似乎工作正常:http://jsfiddle.net/9gahF/ – 2012-02-13 07:14:58