原生JS和jQuery的一个问题?
看透不说透
看透不说透 2017-02-20 09:31:12
0
1
1028
<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?

看透不说透
看透不说透

全員に返信(1)
迷茫

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

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!