首页 热点资讯 义务教育 高等教育 出国留学 考研考公

JS使用find获取input值

发布网友 发布时间:2022-04-22 06:07

我来回答

1个回答

热心网友 时间:2023-01-23 04:45

首先要通过js获取<input type="text"/>对象,如:<input id="myText" type="text"/>在js中获取:<script type="text/javascript">
window.onload = function() {
var myVal= document.getElementById("myText").value;
alert('文本框的值为:'+myVal);
}
</script>追问如何基于这段代码改呢

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com