码迷,mamicode.com
首页 > 其他好文 > 详细

MUI点击事件获取当前对象,及当前对象的属性值

时间:2017-03-29 01:10:24      阅读:5109      评论:0      收藏:0      [点我收藏+]

标签:call   car   tap   script   javascrip   text   his   get   geturl   

//用惯了jquery,开始用mui还是有些不习惯

//直接贴代码吧

<nav class="mui-bar mui-bar-tab">
  <a class="mui-tab-item" id="fi">
    <img src="img/girl.png" id="callgirl"/>
    <span class="mui-tab-label">免费咨询</span>
  </a>  
  <a class="mui-tab-item ordercar" target="end.html">
    <span class="mui-tab-label"> 我要订车 </span> 
  </a>
</nav>

 

//问题  当我点击 我要订车 ,我要获取到target的值

<script type="text/javascript" charset="utf-8">

//mui的 nav下面 a标签,点击是不会跳转的

mui(".mui-bar").on("tap",".ordercar",function(){

 //当前对象直接就是--->this

var targetUrl = this.target;

console.log("你要跳转的地址是:"+targetUrl);

window.location.href=targetUrl;

});

 在jquery里面我们是,$(this)--->获取当前对象

 在mui里里面我们只用,this--->就得到了当前对象了

MUI点击事件获取当前对象,及当前对象的属性值

标签:call   car   tap   script   javascrip   text   his   get   geturl   

原文地址:http://www.cnblogs.com/pnz-bug/p/6637652.html

(1)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!