最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Setting aria-labelaria-labelledby within React.cloneElement()? - Stack Overflow

programmeradmin2浏览0评论

Basically, I'm trying to clone an element and change its aria-label within React.cloneElement. I've got a ponent - ButtonArrows - that creates two Button ponents, one with an arrow icon pointing left, and one pointing right. I'd like to be able to programmatically change the aria-label, but the hyphen throws an error.

Here's some code showing what I'm trying to do:

const ButtonArrows = ({leftArrow, rightArrow, ...props})
  const prevButton = (
    <Button
      aria-label="Previous",
      icon={leftArrow}
    />
  );

  const nextButton = React.cloneElement(prevButton, {
    //this is where the problem is:
    aria-label="Next",
    icon={rightArrow}
  });

  return(<div {...props}>{prevButton}{nextButton}</div>);
}

and obviously I can't do aria-label="Next" because of the hyphen.

Any suggestions? React unfortunately doesn't have anything like htmlFor (to stand in for html-for) when it est to aria labels. Should I just put an ariaLabel prop on Button and pass it down, or is there a way to do it directly with cloneElement that I'm missing?

Basically, I'm trying to clone an element and change its aria-label within React.cloneElement. I've got a ponent - ButtonArrows - that creates two Button ponents, one with an arrow icon pointing left, and one pointing right. I'd like to be able to programmatically change the aria-label, but the hyphen throws an error.

Here's some code showing what I'm trying to do:

const ButtonArrows = ({leftArrow, rightArrow, ...props})
  const prevButton = (
    <Button
      aria-label="Previous",
      icon={leftArrow}
    />
  );

  const nextButton = React.cloneElement(prevButton, {
    //this is where the problem is:
    aria-label="Next",
    icon={rightArrow}
  });

  return(<div {...props}>{prevButton}{nextButton}</div>);
}

and obviously I can't do aria-label="Next" because of the hyphen.

Any suggestions? React unfortunately doesn't have anything like htmlFor (to stand in for html-for) when it est to aria labels. Should I just put an ariaLabel prop on Button and pass it down, or is there a way to do it directly with cloneElement that I'm missing?

Share Improve this question edited Jul 26, 2017 at 14:45 k buechner asked Jul 26, 2017 at 14:41 k buechnerk buechner 231 gold badge1 silver badge4 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6

You should be able to use a plain JavaScript object here:

const nextButton = React.cloneElement(prevButton, {
  'aria-label': 'Next',
  icon: rightArrow
});
const ButtonArrows = ({leftArrow, rightArrow, ...props})
  const prevButton = (
    <Button
      ariaLabel="Previous",
      icon={leftArrow}
    />
  );

  const nextButton = React.cloneElement(prevButton, {
    //this is where the problem is:
    ariaLabelledby="Next",
    icon={rightArrow}
  });

  return(<div {...props}>{prevButton}{nextButton}</div>);
}

change aria-label to ariaLabel

发布评论

评论列表(0)

  1. 暂无评论