关于javascript:怎么获取表单中的数据

32次阅读

共计 387 个字符,预计需要花费 1 分钟才能阅读完成。

怎么获取表单中的数据 name 属性为 name,id 为 nameId 的 value 值
javascript 中的原生方~~~~ 式 - 不借助任何框架

办法一, 基于表单中 name 属性为 name 的 value

document.forms[0].name.value

办法二基于 id 获取

document.getElementById("nameId").value

办法三

document.querySelector("#nameId").value

js 中模板字符串应用代替字符串拼接
字符串拼接

console.log(a+"+"+b+"="+(a+b));
VM678:1 100+109=209

模板字符串 ${}为模板字符串中的 EL 表达式, 能够提取变量值

console.log(`${a}+${b}=${a+b}`);
VM816:1 100+109=209

js 中 var 是变量 conset 是常量 let 块级作用变量

正文完
 0