欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

js怎樣拿到html里的內(nèi)容

js怎樣拿到html里的內(nèi)容?

從js里面獲取html 的input標(biāo)簽中的內(nèi)容分兩種:

1、獲取input標(biāo)簽的值,方法: 根據(jù)input的name或者id獲取其值,假如有:<input type='text' id='name' value=123> js中獲取方法:$("#name").val();

2、獲取input標(biāo)簽的屬性內(nèi)容,方法: 如有:<input type='text' id='name' value=123 ind='1'>要獲取ind的值,方法:$("#name").attr("ind");