在Vue中获取自定义属性方法:data-id的实例

时间:2021-05-25

获取自定义属性的方法:

第一步:首先在标签上绑定上@click="getDateId(item.id)",并将属性值传到绑定的事件里面

第二步:在标签上继续绑定:date-id = "item.id"属性

第三步:在<script>里面的属性methods里面添写上事件函数 getDateId(id){} 在事件函数里面获取id的值即可

<template><h2 class="left t-title" @click='getDataId(item.id)' :data-id="item.id"></h2></template><script> methods: { getDataId(id) { console.log(id); } },</script>

补充知识:vue本地存储、获取自定义data-id、获取链接url参数、页面跳转返回、修改页面title

一、本地存储:

localStorage.setItem('uqid','REgaI2eAT9yDfpdc'); //存储本地(传死参)

var uqid = localStorage.getItem('uqid'); // 获取存储本地值

或者

var orderSn = 20;localStorage.setItem('orderSn',orderSn);var uqid = localStorage.getItem('orderSn');

二、获取自定义--------data-id

bindList(e){ var autoId = $(e.currentTarget).attr('data-id'); //获取div -data },

三、获取链接---url参数

http://localhost:8080/#/lineitem?uqid =2019032817530157997 (获取---uqid )bindList(){ var uqid = utils.getUrlKey('uqid'); alert(uqid );},

以上获取url参数需要引入js文件----utils.js

export default{ getUrlKey: function (name) { return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.href) || [, ""])[1].replace(/\+/g, '%20')) || null }}

main.js全局引入下

import utils from './assets/js/utils.js' //获取url参数

global.utils = utils;

四、页面跳转返回

@click="bindReturn"methods:{ bindReturn(){ this.$router.go(-1); //返回上一页, }, bindOrider(){ this.$router.push({path: '/doctorlist'}); //页面跳转 },}

router/index.js文件中

import doctorList from '@/components/doctorlist'export default new Router({ routes: [ { path:'/doctorlist', name:'doctorList ', component:doctorList , meta: { title: '我是修改后的页面title' } }, ]})

修改页面title--main.js 最后添加

// 修改页面titlerouter.beforeEach((to, from, next) => { if (to.meta.title) { document.title = to.meta.title; } next();})

以上这篇在Vue中获取自定义属性方法:data-id的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章