Home  >  Q&A  >  body text

原生JS和jQuery的一个问题?

<input type="" name="" value="" id="input">
<button type="button" id="btn">button</button>

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
<script type="text/javascript">
    $("#btn").on('click',function() {
        window.open("http://www." + document.getElementById("input").value + ".com");
    });
</script>

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
<script type="text/javascript">
    $("#btn").on('click',function() {
        window.open("http://www." + $("#input").value + ".com");
    });
</script>

各位大神,小弟请问一下,如上面代码所示,为何第二种使用jQuery的方法,无法获取到input中输入的value?而显示underfind?欢迎来喷

phpcn_u391phpcn_u3912824 days ago877

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 00:22:24

    A question about native JS and jQuery?-PHP Chinese website Q&A-A question about native JS and jQuery?-PHP Chinese website Q&A

    Look around and learn.

    reply
    0
  • 阿神

    阿神2017-02-16 11:32:54

    jquery获取value是用$().val(),当然你也可以$("#input")[0].value~
    还可以 $("#input").get(0).value;
    因为jquery包住的对象是封装好的对象,要想直接拿到dom那就后面两种

    reply
    0
  • Cancelreply