vue项目中点击事件的写法
在jsp或者是html里面,添加点击事件的代码如下onclick="getDate()"<button onclick="getDate()">搜索</button>在vue项目中,添加点击事件的代码如下@click="方法名()"<el-button type="primary" icon="el-icon-search" @click...
·
在jsp或者是html里面,添加点击事件的代码如下
οnclick="getDate()"
<button onclick="getDate()">搜索</button>
在vue项目中,添加点击事件的代码如下
@click="方法名()"
<el-button type="primary" icon="el-icon-search" @click="searchData()">搜索</el-button>
更多推荐
已为社区贡献58条内容
所有评论(0)