在Vue中,則是加上v-on這個指令 <input type = "button" value="按鈕" v-on:事件名稱="事件發生時做什麼">. 舉例來說,我們想要讓使用者點擊按鈕時, ... ... <看更多>
「vue v-on」的推薦目錄:
vue v-on 在 1-5 事件處理 - 重新認識Vue.js 的相關結果
在進入本篇之前,我們大多透過 v-model 指令來與Vue 實體的資料溝通,但那畢竟只是語法糖的一種, Vue.js 甚至是JavaScript 能做到的遠遠不僅於此。 ... <看更多>
vue v-on 在 Vue.js Core 30天屠龍記(第17天): `v-on` 的修飾符Part 1 的相關結果
在事件中,我們常常需要叫用像是 event.preventDefault() 或 event.stopPropagation() 這類的處理, Vue.js 提供給我們一些常用處理的修飾符,讓我們可以直接設定在屬性上 ... ... <看更多>
vue v-on 在 Vue.js: Methods 與事件處理(Event Handling) - Summer。桑莫 ... 的相關結果
為了能讓使用者與畫面互動,我們可以使用 v-on:some_method (簡寫 @some_method ) 綁定事件監聽器,藉此使用我們在vue instance 宣告的method。 ... <看更多>
vue v-on 在 Vue.js 事件处理器 - 菜鸟教程 的相關結果
Vue.js 事件处理器事件监听可以使用v-on 指令: v-on [mycode3 type='html'] 增加1 这个按钮被点击了{{ counter }} 次。 new Vue({ el: '#app', data: { counter: 0 } ... ... <看更多>
vue v-on 在 [教學]Vue js快速上手(五)Vue.js要如何v-on的其他運用 的相關結果
YOTTA友讀提供商業、設計、語言、科技、生活五大領域線上課程,讓你學習不受限,隨時隨地透過自學提升專業技能,成為更好的自己! ... <看更多>
vue v-on 在 Vue(6)v-on指令的使用 - IT人 的相關結果
v -on 監聽事件可以用v-on 指令監聽DOM 事件,並在觸發時執行一些JavaScript 程式碼。事件程式碼可以直接放到v-on後面,也可以寫成一個函式。 ... <看更多>
vue v-on 在 Vue.js 學習旅程Mile 9 – Event Handling 事件處理篇-1 的相關結果
<div id="app"> <button v-on:click="addCount">addCount</button> <p>{{ count }}</p> </div> var vm = new Vue({ el: '#app', data: { count: 0 } ... ... <看更多>
vue v-on 在 [Vue.js][踩雷篇] Vue v-on:click does not work on component 的相關結果
Vue 的component 上使用v-on 來綁定click 等事件沒有反應. 情境:. 以下為webpack vue load 的開發環境. template file: button.vue < ... ... <看更多>
vue v-on 在 [Vue.js] 欄位輸入後按Enter 自動執行(Enter Event) - 程式教練 ... 的相關結果
使用者按下搜尋圖示後,經由 v-on:click="SendStraSearch()" 就會觸發 SendStraSearch() 方法呼叫後端的搜尋。 增加鍵盤Enter 觸發. 在Vue.js 的常用鍵盤 ... ... <看更多>
vue v-on 在 Vue.js 新手上路之初體驗筆記 的相關結果
<div id="app"> <input type="text v-model="msg"> Output: {{ msg }} </div> var app = new Vue ({ el: "#app", data: { msg: "Hello World!" } }) 當 ... ... <看更多>
vue v-on 在 VueJs(6)---V-on指令- 雨点的名字 - 博客园 的相關結果
V -on指令一、概述v-on是用来绑定事件监听器,用在普通元素上时,只能监听原生DOM 事件。用在自定义元素组件上时,也可以监听子组件触发的自定义事件。 ... <看更多>
vue v-on 在 Vue – 在標籤中,綁定參數(v-bind) 與監聽事件(v-on) 的混和用法 的相關結果
JS. 因為vue 特性. app.url 等同於http://google.com; app.show() 呼叫vue 底下methods 的show() ... ... <看更多>
vue v-on 在 [教學] Vue js快速上手(四) Vue.js要如何v-on:click? - 草監網路 的相關結果
從開始到現在,我們的範例都是real time即時執行,但是一般網站幾乎都不是real. ... <看更多>
vue v-on 在 javascript - v-on ="..."语法在VueJS 中是什么意思? - IT工具网 的相關結果
javascript - v-on ="..."语法在VueJS 中是什么意思? 原文 标签 javascript vue.js vuetify.js. 我遇到了v-dialog component ... ... <看更多>
vue v-on 在 說說Vue.js 中的v-on 事件指令- IT閱讀 的相關結果
Vue.js 還提供了一個 $event 變數,使用它可以訪問原生DOM 事件。 $event 變數可以通過方法傳入。 html: <div id="app2"> <a href="www.163.com" ... ... <看更多>
vue v-on 在 [Vue] v-on 的重點原始碼_冼嘉賢 的相關結果
v -on:click 中沒有this上下文,但可以直接訪問元件的屬性和方法。 v-on:click的函式會再包裝一次返回,並且呼叫的時候使用apply()和call(),永遠都是 ... ... <看更多>
vue v-on 在 Vue V-model 對應到input的value ,v-on:click 對應到onclick 的相關結果
只能用在這三個屬性input select textarea. //v-on:click 對應到methods的reserseText的函數. <script>. var app = new Vue({. el: '#app',. ... <看更多>
vue v-on 在 Vue.js v-on:click get target Example ( click 事件取得自己) 的相關結果
在重構工作上的一段小程式,轉而使用Vue 寫一點小功能。 我發現若在一個含有很多子元素的element 上加上on click 事件,在click 的時候很容易點到子 ... ... <看更多>
vue v-on 在 在Vue.js中将事件和参数传递给v-on - QA Stack 的相關結果
我在 v-on:input 指令中传递参数。如果没有通过,则可以在方法中访问该事件。将参数传递给函数时,还有什么方法可以访问事件?并不是说我正在使用vue-router:. ... <看更多>
vue v-on 在 Vue.js中的v-on(事件處理) | 程式前沿 的相關結果
Vue.js的事件處理. 監聽事件. 我們可以用v-on 指令監聽DOM 事件來觸發一些JavaScript 程式碼。 <div class="box"> {{msg}} <input type="button" ... ... <看更多>
vue v-on 在 Vue.js中的v-on(事件处理) - SegmentFault 思否 的相關結果
Vue.js的事件处理. 监听事件. 我们可以用v-on 指令监听DOM 事件来触发一些JavaScript 代码。 <div class="box"> {{msg}} <input type="button" ... ... <看更多>
vue v-on 在 [Vue.js] v-bind 與v-on 的縮寫 - 紅色死神 的相關結果
v - 是vue 的前綴字,可以用以下縮寫代替。 v-bind 縮寫: view plaincopy to clipboardprint. <!-- 完整語法 -->; <a v-bind:href="url"></a>; <! ... <看更多>
vue v-on 在 Vue.js 筆記 的相關結果
Vue.js 筆記=== ###### tags: `web` `frontend` `JS Framework` [官方網站](https://cn.vuejs.org/) **CDN** ` ... <看更多>
vue v-on 在 Difference between @click and v-on:click Vuejs - Stack Overflow 的相關結果
The v- prefix serves as a visual cue for identifying Vue-specific attributes in your templates. This is useful when you are using Vue.js to ... ... <看更多>
vue v-on 在 vue学习四v-on的事件修饰符和按键修饰符 - 腾讯云 的相關結果
方法只有纯粹的数据逻辑,而不是去处理DOM 事件细节,为了解决这个问题,Vue.js 为 v-on 提供了事件修饰符。修饰符是由点开头的指令后缀来表示的。 ... <看更多>
vue v-on 在 vue常用事件之v-on:click 以及事件对象,事件冒泡,事件默认行为 的相關結果
vue 专栏收录该内容. 28 篇文章 2 订阅. 订阅专栏. 其实v-on后面跟的不止是click事件也可以是其他的事件,用法均相似。 ... <看更多>
vue v-on 在 Extending object syntax of v-on to support modifiers #7846 的相關結果
The object syntax of the v-on directive is vital in achieving conditional ... which can dynamically be a Vue component or a DOM element. ... <看更多>
vue v-on 在 [筆記][Vue 2.x][Vue 3][Todo] Vue.js 的起手式範例Todos (含講解 ... 的相關結果
... 操作,但是Vue則是【資料】,至於畫面如何去對應,則是在HTML中,由一些綁定的語法,讓資料與畫面做綁定,再加上【v-if, v-for, v-on, v-model, . ... <看更多>
vue v-on 在 Handle DOM Events in Vue.js with v-on | egghead.io 的相關結果
Modifiers like stop and prevent can be used in place to preventDefault() and stopPropagation. Vue.js can also capture key bindings such as v-on:keyup.enter ... ... <看更多>
vue v-on 在 v-on & methods: User Interaction > The Delightful World of Vue 的相關結果
We have a collapsed data and we're using it in the template. Testing time! In the Vue dev tools, click on Sidebar, change collapsed to true and... ... <看更多>
vue v-on 在 Vue Event Handling with v-on - Mastering JS 的相關結果
In Vue, the v-on directive is how you run JavaScript in response to DOM events. If you want to run some code when the user clicks a button, ... ... <看更多>
vue v-on 在 说说Vue.js 中的v-on 事件指令- 掘金 的相關結果
注意: @click 是v-on:click 的简写形式, @ 即表示v-on:。 @click 表达式即可以直接使用js 语句,也可以是一个定义在vue 实例中methods 内的函数… ... <看更多>
vue v-on 在 [掘竅] 為什麼畫面沒有隨資料更新- Vue 響應式原理(Reactivity) 的相關結果
也因此,錯誤的使用可能會導致Vue 的data 不會有即時更新的效果。 ... 瞭解Vue Reactivity 的原理. JS. Result; Skip Results Iframe. ... <看更多>
vue v-on 在 Vue.js 101 - part 2: Button Click - DEV Community 的相關結果
Everyday, I publish here on Dev.to what I learn from my Vue course the day before. Click follow if... Tagged with javascript, vue, ... ... <看更多>
vue v-on 在 簡單的Vue Render Functions 與動態組件的綜合應用 - Alex Liu 的相關結果
在開發Vue 專案的時候,單檔組件(SFC)提供了開發者非常好的便利性。 ... <template> <h1 v-if="tag === 'h1'" class="article-title" > {{ title }} ... ... <看更多>
vue v-on 在 Shorthands for Events and Bindings in Vue - Coding Explained - 的相關結果
See how to save time by using shorthand syntaxes for the v-on and v-bind directives in Vue.js. ... <看更多>
vue v-on 在 取值/給值· 給jQuery愛好者的Vue.js 2教學手冊 的相關結果
這是Vue.js 2 的取值與給值方式 <div id="js-example-app"> <input type="text" v-model="mobile" value="" /> <input type="button" v-on:click="runButtonOnClick" ... ... <看更多>
vue v-on 在 Vue.js - 維基百科,自由的百科全書 的相關結果
Vue.js(/vjuː/,或簡稱為Vue)是一個用於建立使用者介面的開源JavaScript框架,也是一個建立單頁應用的Web應用框架。2016年一項針對JavaScript框架的調查表明,Vue有著89% ... ... <看更多>
vue v-on 在 Testing v-on="$listeners" in Vue.js - Jonnie Hallman 的相關結果
Testing v-on="$listeners" in Vue.js. Jul 13th, 2020. Before Cushion, I used to keep a super scrappy Tumblr blog for solutions to all the code problems I ... ... <看更多>
vue v-on 在 vue.js @click和v-on:click有什么区别? - 知乎 的相關結果
没有区别,@ 只是一个v-on: 的缩写,为了书写方便。 见官方文档: 模板语法— Vue.js · 缩写 v- 前缀作为一种视觉提示,用来识别模板中Vue 特定的特性。 ... <看更多>
vue v-on 在 vue.js 的迴圈(Loop) v-for 指令技巧 - IT Skills 波林 的相關結果
vue.js 的迴圈(Loop) v-for 指令技巧- vue.js 的迴圈(Loop) v-for 指令技巧,通常在取得陣列( Array ) 中的Key & Value - IT Skills 波林. ... <看更多>
vue v-on 在 Adaptive components using v-bind and v-on - VueDose 的相關結果
Learn to use v-bind and v-on in order to proxify props and events for building a wrapper component in Vue.js. ... <看更多>
vue v-on 在 Vue.js v-on:keyup Directive - GeeksforGeeks 的相關結果
The v-on:keyup directive is a Vue.js directive used to add an event listener to an button in the keyboard. First, we will create a div ... ... <看更多>
vue v-on 在 Vue.js Cheat Sheet - Flavio Copes 的相關結果
Directives. Directives are attributes identified by the v- prefix. ... v-on:click.native trigger a native DOM event instead of a Vue event ... ... <看更多>
vue v-on 在 Why you should use the key directive in Vue.js with v-for 的相關結果
Not using the Vue.js key directive while rendering lists can cause bugs in some cases. ... <看更多>
vue v-on 在 【前端新手日記】Vue.js學習筆記(2)-Vue的常用指令 - 文科少女 ... 的相關結果
在Vue這個框架下,有不少方便好用的常見語法。 這次就以這部分的內容為主,整理Vue的學習筆記。 Vue的常見指令v-on 事件監聽以前利用DOM API監聽事件 ... ... <看更多>
vue v-on 在 Vue 指令大全(超详细) | Vue.js 技术论坛 - LearnKu 的相關結果
本文详细介绍了Vue 各种指令的用法,以及部分指令之间的对比本文纲领: 本文会详细介绍vue 以下指令及其语法、用法,以及指令之间的详细对比,涉及指令有:v-text ... ... <看更多>
vue v-on 在 说说Vue.js 中的v-on 事件指令 - 简书 的相關結果
1 基础用法v-on 指令绑定事件后,就会监听相应的事件。 html: 注意: @click ... Vue.js 还提供了一个 $event 变量,使用它可以访问原生DOM 事件。 ... <看更多>
vue v-on 在 Vue.js 的data 與methods - 網頁15天 的相關結果
在一開始建立Vue Instance 的時候,Vue.js 會開始掌控HTML 的某一個區塊,在一些範例程式碼很常見的就是#app. 在建立Vue Instance 之前,我們會先做好 ... ... <看更多>
vue v-on 在 How to Implement a Mouseover or Hover in Vue - Michael ... 的相關結果
The reason is that there can be significant performance problems when using mouseenter on deep DOM trees. This is because mouseenter fires a unique event to the ... ... <看更多>
vue v-on 在 【Vue 3.0 中文入门使用教学】事件处理- v-on, event, vue3 p.21 的相關結果
马哥可以讲讲vue-cli3中,vue-config.js中的一些配置吗。利用环境变量配置自动化打包什么的 ... ... <看更多>
vue v-on 在 Bootstrap Vue 的相關結果
Quickly integrate Bootstrap v4 components with Vue.js. ... <看更多>
vue v-on 在 Nuxt - The Intuitive Vue Framework 的相關結果
Build your next Vue.js application with confidence using Nuxt. An open source framework making web development simple and powerful. ... <看更多>
vue v-on 在 vue基础学习总结二之事件处理 的相關結果
Vue 允许为v-on 在监听键盘事件时添加按键修饰符: <!-- 只有在`keyCode` 是13 时调用`vm.submit()` --><input v-on:keyup.13="submit">. ... <看更多>
vue v-on 在 Button component - Vuetify 的相關結果
Buttons. The v-btn component replaces the standard html button with a material design theme and a multitude of options. Any color helper class can be used ... ... <看更多>
vue v-on 在 Why I Love Vue 3's Composition API 的相關結果
The source code is also available on GitHub. Options API. First, let's look at how we build components in Vue 2 without the Composition API. In ... ... <看更多>
vue v-on 在 element ui如何增加事件 - web前端开发 的相關結果
而.native是用于监听组件根元素的原生事件,主要是给自定义的组件添加原生事件,而普通的js元素不需要。 左delimiters修改分隔符(Vue). 教程. ... <看更多>
vue v-on 在 Recent questions tagged Vue - OStack Q&A-Knowledge ... 的相關結果
vue v -model.number 到底有没有用? 官方说的是自动转为number 类型。 但是没发现有转换啊?到底有没有用? 谁给个demo 看看区别在哪. ... <看更多>
vue v-on 在 [VueJS] 關於動態載入這件事 的相關結果
假設我們有一個 App.js ,用來初始化整個App 的地方,我們將Vue 給拋出去。 import Vue from 'vue' export default { name: 'app', ... ... <看更多>
vue v-on 在 Props undefined vue 的相關結果
I have 'undefined' props in child Since we're defining it on the Vue component, this refers to your Vue component. When we build our applications out of ... ... <看更多>
vue v-on 在 如何使用Vue.js去抖過濾器? - 優文庫 - UWENKU 的相關結果
我試圖按照Vue.js docs使用debounce過濾器,所以我可以防止在用戶鍵入輸入時觸發Ajax功能。在過去,我使用setTimeout來手動阻止在每個字母輸入後發送請求,並使用重置 ... ... <看更多>
vue v-on 在 How to set the sidebar menu enabled when clicked in vue.js? 的相關結果
<div id="mobile_sidebar_display"> <div class="logo_section d-flex justify-content-center align-items-center" > <a v-on:click="closeSideDrawer" :href="base + ... ... <看更多>
vue v-on 在 Vue起步,v-cloak、v-text、v-html等指令的用法以及区别 的相關結果
文章目录 一、Vue.js 起步 Vuejs 9 1、Vue案例具体分析emspemsp1Vue 17 二、 ... <看更多>
vue v-on 在 Vue.js devtools - Chrome Web Store 的相關結果
Chrome and Firefox DevTools extension for debugging Vue.js applications. ... <看更多>
vue v-on 在 Vue自定义指令详细 - 脚本之家 的相關結果
例如:v-my-directive.foo.bar 中,修饰符对象为{ foo: true, bar: true }。 vnode :Vue 编译生成的虚拟节点。移步VNode API 来了解更多详情。 ... <看更多>
vue v-on 在 TypeScript: JavaScript With Syntax For Types. 的相關結果
Catch errors early in your editor. A Result You Can Trust. TypeScript code converts to JavaScript, which runs anywhere JavaScript runs: In a browser, on Node.js ... ... <看更多>
vue v-on 在 Pearson VUE: Computer-Based Test (CBT) development and ... 的相關結果
Your certification or licensure exam is the start of something great. With a seamless testing experience, you're one step closer to delivering on the promise of ... ... <看更多>
vue v-on 在 VUE Vlog - 用Vlog 记录生活,分享真实的你 的相關結果
VUE Vlog 是国内领先的视频拍摄和编辑工具以及原创的Vlog 短视频平台。VUE Vlog 提供海量的音乐、贴纸、边框、字体、滤镜、转场等样式和素材,让你不费吹灰之力, ... ... <看更多>
vue v-on 在 史上最全Vue 前端代码风格指南 的相關結果
... README.md // 项目 README |- vue.config.js // webpack 配置复制代码 ... 并且 v-on 事件监听器在DOM 模板中会被自动转换为全小写(因为HTML 是 ... ... <看更多>
vue v-on 在 Vue slots ≫ Qué son y cómo usarlos - Coding Potions 的相關結果
Los slots son un mecanismo de Vue JS que sirve para insertar contenido HTML dentro de los componentes. Es decir, con los props puedes pasar ... ... <看更多>
vue v-on 在 VUE 3 笔记(2021-11-11) 的相關結果
... <title>Document</title> <script src="https://unpkg.com/vue@next"></script> </head> <body> <div id="app"> <div v-if="Math.random()>0.5"> ... ... <看更多>
vue v-on 在 vue项目中使用v-if判断数组长度是,length报错? - 程序员信息网 的相關結果
直接使用:<a href="#picture" v-if="shopListData.attrs.length >0 " class="mui-navigate-right">选择<span >{{ product_attr }}</span>< ... ... <看更多>
vue v-on 在 Swiper - The Most Modern Mobile Touch Slider 的相關結果
Swiper is also a default slider component in the Ionic Framework. Available For. JavaScript logo · Angular logo · React logo · Vue.js logo · Svelte logo ... ... <看更多>
vue v-on 在 关于vue.js:vue-模板循环绘制多行上传文件功能 - 乐趣区 的相關結果
关于vue.js:vue-模板循环绘制多行上传文件功能. 2021-11-11. 咱们在上传多个文件时, 循环绘制模板, el-upload 拿不到以后操作的节点, 能够在其外层减少一个div 加上 ... ... <看更多>
vue v-on 在 React – A JavaScript library for building user interfaces 的相關結果
React can also render on the server using Node and power mobile apps using React Native. A Simple Component. React components implement a render() ... ... <看更多>
vue v-on 在 V for Vendetta (2005) - IMDb 的相關結果
V for Vendetta: Directed by James McTeigue. With Natalie Portman, Hugo Weaving, Stephen Rea, Stephen Fry. In a future British tyranny, a shadowy freedom ... ... <看更多>
vue v-on 在 Laravel - The PHP Framework For Web Artisans 的相關結果
The PHP Framework for Web Artisans. Laravel is a web application framework with expressive, elegant syntax. We've already laid the foundation — freeing you ... ... <看更多>
vue v-on 在 Visual Studio Code - Code Editing. Redefined 的相關結果
By using VS Code, you agree to its license and privacy statement. ... With Microsoft Azure you can deploy and host your React, Angular, Vue, Node, ... ... <看更多>
vue v-on 在 Alexander von Zemlinsky - Vue globale - Ôlyrix 的相關結果
Né à Vienne, Alexander von Zemlinsky (1871-1942) est admis au Conservatoire dès ses 13 ans, pour y étudier le piano puis la composition. ... <看更多>
vue v-on 在 Vue codepen 的相關結果
Codepen.io clone using Vue 3 and Monaco Editor. September 15, 2021. Comments on Vue js examples codepen. There are many times when building application for the ... ... <看更多>
vue v-on 在 MCS Group - NI Job Finder 的相關結果
Full stack Developer (PHP and Vue.js/React) Job in Belfast - nijobfinder - Northern Ireland - MCS Group - Thousands of jobs throughout NI. ... <看更多>
vue v-on 在 Font Awesome 的相關結果
Font Awesome Works How And Where You Need It To. like with your favorite apps and toolsets… Web Fonts + CSS · SVG + JS · Sketch · Figma · Vue.js · Angular ... ... <看更多>
vue v-on 在 Add Firebase to your JavaScript project 的相關結果
This page describes setup instructions for version 9 of the Firebase JS SDK, ... Tools such as the Angular CLI, Next.js, Vue CLI, or Create React App ... ... <看更多>
vue v-on 在 Pro Vue.js 2 - 第 343 頁 - Google 圖書結果 的相關結果
Tip vue.js is generally relaxed about the names of methods that are invoked when an event is triggered, but you will receive an error if you use a method ... ... <看更多>
vue v-on 在 Using Vue 3 in IE11 - Pretag 的相關結果
If you need to support IE 11, use Vue 2....,Vue 3 is using JS proxies for reactivity, which is not supported in any version of IE (see my link - ... ... <看更多>
vue v-on 在 Vue.js 2 Design Patterns and Best Practices: Build ... 的相關結果
Build enterprise-ready, modular Vue.js applications with Vuex and Nuxt Paul Halliday. This is best shown with a form example. Let's take our previous people ... ... <看更多>
vue v-on 在 Vue.js: Up and Running: Building Accessible and Performant ... 的相關結果
Now, I'll introduce you to event binding in Vue. ... you can write the following: <button v-on:click="counter++">Click to increase counter</button><p>You've ... ... <看更多>
vue v-on 在 Learning Vue.js 2 - 第 301 頁 - Google 圖書結果 的相關結果
Let's bind the add event to addItem by attaching the v-on:add modifier to the ... and pushes it into the array of items: new Vue({ el: '#app', data: data, ... ... <看更多>
vue v-on 在 Vue.js: 11 Practical Projects - Google 圖書結果 的相關結果
vue create my-modal Select the default preset, then when the CLI has ... the Materialize dependency: npm i materialize-css Open up src/main.js so that we ... ... <看更多>
vue v-on 在 Learn Vue.js in 7 Days: Journey through Vue.js - Google 圖書結果 的相關結果
Journey through Vue.js Nirmal Hota, Tadit Dash, Dr. Vishal Jain. When you select Bhubaneswar, it would print 1, as shown in the following screenshot: Note: ... ... <看更多>
vue v-on 在 Ionic vue table 的相關結果
Dec 13, 2019 · See Ionic Framework Vue JS eBook & Video Courses. ... To implement a data table we have the component vs-table, also sub components and slots ... ... <看更多>
vue v-on 在 事件处理 - Vue.js 的相關結果
可以用 v-on 指令监听DOM 事件,并在触发时运行一些JavaScript 代码。 示例: <div id="example-1"> <button v-on:click="counter += 1">Add 1</button> <p>The button ... ... <看更多>