我试图在某些情况下禁用提交按钮,但它不起作用。当我在浏览器中检查元素时,无论条件返回 true 还是 false,都会呈现这样的内容。
在浏览器中呈现的元素
<button type="submit" disabled="" class="bg-yellow-500 text-white mt-4 disabled:bg-yellow-300 px-3 py-2 rounded-md">Submit</button>
代码
state = {
formIsVaild: false
}
render() {
<button type="submit" disabled={!this.state.formIsVaild} className="bg-yellow-500 text-white mt-4 disabled:bg-yellow-300 px-3 py-2 rounded-md">Open Discussion</button>
}
我什至删除了条件并尝试了这个......
state = {
formIsVaild: false
}
render() {
<button type="submit" disabled className="bg-yellow-500 text-white mt-4 disabled:bg-yellow-300 px-3 py-2 rounded-md">Open Discussion</button>
}
无论我传递给 disable 属性的值是什么,disabled=""
都会在 HTML 中呈现。我什至尝试使用类型为 submit 的输入而不是按钮,我得到了相同的结果。我不确定这里发生了什么……有什么帮助吗?
最小示例
import React, { Component } from 'react';
class FormData extends Component {
state = {
formIsVaild: false
}
render() {
return (
<div className="grid grid-cols-3 gap-4">
<div className="col-span-2">
<form>
<button type="submit" disabled={!this.state.formIsVaild} className="bg-yellow-500 text-white mt-4 disabled:bg-yellow-300 px-3 py-2 rounded-md">Submit</button>
</form>
</div>
</div>
)
}
}
export default FormData
答案 0 :(得分:4)
该按钮实际上已禁用,但未应用 disabled:
tailwind prefix 的样式,因为它可能未启用,因为默认情况下它禁用。
您可以控制是否为插件启用 disabled
变体
tailwind.config.js
文件的变体部分:
// tailwind.config.js
module.exports = {
// ...
variants: {
extend: {
opacity: ['disabled'],
}
},
}
就您而言,它可能是 backgroundColor: ['disabled']
。 (Tailwind playground)
答案 1 :(得分:-1)
这是我用 React.useState() 完成的一个简单脚本
import React from 'react'
export default function App() {
const [state, setState] = React.useState(false);
return (
<div className="App">
<button onClick={()=>{setState(!state)}}>
State is: {state? 'true':'false'}
</button>
</div>
);
}
您没有提供关于您如何更改 disable
状态的足够信息。我想你完全错过了这一部分。
这里是类状态:
简短说明:第一个按钮更改 this.state.formIsValid
,
第二个按钮被禁用。
import React, { Component } from 'react';
export default class FormData extends Component {
state = {
formIsVaild: false
}
render() {
return (
<div className="grid grid-cols-3 gap-4">
<div className="col-span-2">
<button onClick={()=>{this.setState({formIsVaild:!this.state.formIsVaild})}}>Change state</button>
<form>
<button type="submit" disabled={this.state.formIsVaild} className="bg-yellow-500 text-white mt-4 disabled:bg-yellow-300 px-3 py-2 rounded-md">Submit</button>
</form>
</div>
</div>
)
}
}