如果条件“已验证”为“真”,我正在尝试显示一个按钮。
将此用作参考,但不确定我的代码有什么问题。
<button id="authentic" type="hidden">test</button>
<script>
window.onload = function() {
var logedIn = ('{{isauthenticated}}')
if(logedIn == "true") {
document.getElementById('authentic').style.display = 'block';
} else {
document.getElementById('authentic').style.display = 'none';
}
}
</script>