发布网友 发布时间: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>追问如何基于这段代码改呢