从html获取数据属性值到jquery
Posted
技术标签:
【中文标题】从html获取数据属性值到jquery【英文标题】:getting data attrib value from html to jquery 【发布时间】:2015-02-16 11:34:27 【问题描述】:所以我有一堆图像,我正在为其添加一些数据属性,我想稍后在 jquery 中使用它们。
<?
foreach($images as $image)
?>
<div class='dyn-img'>
<img <!-- start image tag -->
src="<? echo $image['src']?>"
data-aspect-ratio ="<? echo $image['aspect_ratio']?>"
... //other dynamic data attribs
> <!-- end image tag -->
</div>
<?
?>
稍后在 jQuery 中,我需要获取这些动态加载的图像并将它们的纵横比传递给一个库函数:
所以在我做的 jQuery 部分(在 document.ready fn 中):
$(".img-holder > img").cropper(
aspectRatio: 1, //<-- this needs to be the data-aspect-ratio defined earlier
... other attributes...
);
我尝试使用 aspectRatio: this.data("aspect-ratio")
但这给了我一个 javascript 错误提示
TypeError: this.data is not a function
aspectRatio: this.data("aspect-ratio"),
我的 jQuery 技能是基本的,所以我希望这里有一些 jQuery/Javascript 大师可以帮助向我展示如何将这个值传递给这个函数。
非常感谢任何帮助!
【问题讨论】:
【参考方案1】:我会使用each
循环,获取属性,然后调用cropper
$(".img-holder > img").each(function()
var size = $(this).data("aspect-ratio");
$(this).cropper(
aspectRatio: size
);
);
【讨论】:
感谢您的回答。基本上我猜我出错的地方是使用this.data()
而不是$(this).data()
以上是关于从html获取数据属性值到jquery的主要内容,如果未能解决你的问题,请参考以下文章
jquery:怎么从一文本框获取值到另一文本框?如下图,下文本框输入值,点提交,则值提交到上文本框。
如何从存储在数据库中的 Listview 获取值到另一个活动?使用 Android 和 Mysql
如何从 CoreData-Entities 获取一些值到代码中