我无权在function test_1_fn()
中修改并输入id="test_1"
那么,如何在输入id="test_2"
和function test_2_fn()
中修改id="test_2"
中innerHTML
的输入id="show_text"
的值作为onkeyup
id="test_2"
}?
备注:输入disabled
仍为id="test_1"
,用户只能将文字填入输入<input id="test_1" onkeyup="test_1_fn()"><br>
<script>
function test_1_fn(){
var test_1_val = document.getElementById("test_1").value;
document.getElementById("test_2").value = test_1_val;
}
</script>
<input id="test_2" onkeypress="test_2_fn()" disabled><br>
<script>
function test_2_fn(){
var test_2_val = document.getElementById("test_2").value;
document.getElementById("show_text").innerHTML = test_2_val;
}
</script>
<div id="show_text"></div>
。
这不是我的功课。谢谢你的所有建议。
class ClassWithSlotBase:
__slots__ = ('a', 'b',)
def __init__(self):
self.a: str = "test"
self.b: float = 0.0
def test_type_hint(_b: float) -> None:
print(_b)
class_tmp = ClassWithSlotBase()
test_type_hint(class_tmp.a)