gpt4 book ai didi

binding.scala - 如何设置tabindex属性

转载 作者:行者123 更新时间:2023-12-02 23:46:05 27 4
gpt4 key购买 nike

使用 Binding.scala 时,我无法编写使用 tabindex 属性的 html。这是 Binding.scala/scala.js 中的错误吗?

  <div>
<input tabindex="1"></input>
<input tabindex="3"></input>
<br></br>
<input tabindex="2"></input>
<input tabindex="4"></input>
</div>

导致编译错误:

ScalaFiddle.scala:12: error: value tabindex is not a member of scalajs.this.dom.html.Input
ScalaFiddle.scala:13: error: value tabindex is not a member of scalajs.this.dom.html.Input
ScalaFiddle.scala:15: error: value tabindex is not a member of scalajs.this.dom.html.Input
ScalaFiddle.scala:16: error: value tabindex is not a member of scalajs.this.dom.html.Input

我尝试使用属性(或属性?)tabIndex,但它不是字符串,并且属性参数需要是字符串。

例如,请参阅:https://scalafiddle.io/sf/kDg2uAA/0

我对 scala、sbt 和 scala.js 很陌生,所以我不确定在哪里/如何解决这个问题,以及如何在创建 pullrequest 之前在本地测试修复。

最佳答案

您可以使用 tabIndex 属性以及 {} 中包含的值(提示:您可以在其中使用任何 scala 代码!)。

<div>
<input tabIndex={1}></input>
<input tabIndex={3}></input>
<br></br>
<input tabIndex={2}></input>
<input tabIndex={4}></input>
</div>

请在此处查看完整代码:https://scalafiddle.io/sf/hGkAVib/1

关于binding.scala - 如何设置tabindex属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56132229/

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