如何将一个文本框的值另一个文本框的值

2024-11-29 21:28:35
推荐回答(1个)
回答(1):



function copy(value){
document.getElementById("title").value = value;

}