我想知道如何访问 shadowroot 中的值,
this.shadowRoot.getElementById("sending"); //not working
render() {
${this.value.map((e)=>{
<div class="form-check pb-2" class="radio_send">
<input class="form-check-input" name="sending" type="radio" id="sending" value="bank transfer" checked>
<input class="form-check-input" name="sending" type="radio" id="sending" value="credit">
</div>
});
}