您好,登錄后才能下訂單哦!
我們測(cè)試使用App.vue頁面
一.先把js文件放到項(xiàng)目中
二.引入jquery文件
在<script>...</script>代碼段中引入,放置在頭部(注意import后面有一個(gè)空格)
import '../utils/niuniu/jquery-1.6.4.min.js'
注意,如果不加 /* eslint-disable*/ ,那么在開啟ESLint時(shí),會(huì)報(bào)以下錯(cuò)誤信息,加上則可以免除驗(yàn)證
三.編寫文件,測(cè)試jquery
文件完整信息如下
<template>
<div id="app">
<img src="./assets/logo.png"><br/>
<input type="text" name="user" id="user" placeholder="請(qǐng)輸入信息" /><br/>
<span id="msg"></span>
<!-- <router-view/> -->
</div>
</template>
<script>
/* eslint-disable*/
import '../utils/niuniu/jquery-1.6.4.min.js'
import { Script } from 'vm';
export default {
name: 'App',
created () {
console.log($('#user'))
}
}
$(function() {
// 綁定jquery處理事件,動(dòng)態(tài)監(jiān)聽文本框內(nèi)容變化
$('#user').bind("input propertychange",function(event){
$('#msg').html('文本框里的內(nèi)容是:' + this.value)
})
})
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
查看效果,文本框輸入內(nèi)容,可實(shí)時(shí)顯示出輸入的信息,說明jquery引用成功:
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。