0

例如:

<div id="target" data-width="400px"></div>

$("#target").myPlugin({width: ??? });

???必须是data-width属性值。

4

3 回答 3

1
$("#target").myPlugin({width: $("#target").attr('data-width') });
于 2012-11-18T10:38:13.547 回答
1

你可以这样做

$("#target").myPlugin({
  width: $("#target").data('width') 
 });

所有功劳归于adeno

于 2012-11-18T10:38:49.840 回答
0

http://api.jquery.com/width/

您可以使用 .width() 轻松获得 leh 宽度

于 2012-11-18T10:36:35.080 回答