使用jQuery从标签获取值 [英] Get values from label using jQuery

查看:102
本文介绍了使用jQuery从标签获取值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想从标签中获取月份和年份的值.如何使用jquery来获取这些信息?

I want to get month and year value from label. How can i get these using jquery?

<label year="2010" month="6" id="current Month"> June &nbsp;2010</label>

推荐答案

首先,我认为ID的空格无效.

Firstly, I don't think spaces for an id is valid.

因此,我将ID更改为不包含空格.

So i'd change the id to not include spaces.

<label year="2010" month="6" id="currentMonth"> June &nbsp;2010</label>

然后,jquery代码很简单(请记住,一次获取jquery对象并反复使用agian更好)

then the jquery code is simple (keep in mind, its better to fetch the jquery object once and use over and over agian)

var label = $('#currentMonth');
var month = label.attr('month');
var year = label.attr('year');
var text = label.text();

这篇关于使用jQuery从标签获取值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆