gpt4 book ai didi

javascript - 如何使用 JavaScript 将 `aria-disabled` 设置为 true

转载 作者:太空狗 更新时间:2023-10-29 14:47:29 26 4
gpt4 key购买 nike

我对JS一无所知。但是我的 Ruby 中需要一行代码。我有以下 html

<div class="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix">
<div class="ui-dialog-buttonset">
<button class="otherButtonClass ui-state-hover ui-state-focus" type="button" role="button" aria-disabled="false">
<button class="otherButtonClass" type="button" role="button" aria-disabled="false" style="display: none;">
<button class="cancelButtonClass" type="button" role="button" aria-disabled="false">
</div>
</div>

我希望 JS 代码使第一个和第二个按钮可见。代码是什么?

请帮忙。

最佳答案

http://jsfiddle.net/SQ7SH/1/

var buttons = document.querySelectorAll('.ui-dialog-buttonset button');
buttons[0].setAttribute('aria-disabled', true);
buttons[1].setAttribute('aria-disabled', true);

按钮也需要关闭标签

关于javascript - 如何使用 JavaScript 将 `aria-disabled` 设置为 true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17468639/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com