我的网页上有4个DIV要素。 每个委员会都有自己的阵列,我随附使用数据。
视用户互动(页面导航)而定,仓储在其中一个阵列中装载了元件识别器。
构造和推导元素是行之有效的。
$( div:jqmData(role="panel") ).each(function(index) {
if ( $(this).jqmData( hash ) == history ) {
var id = $(this).jqmData( id );
$(this).data("stack", []);
// inital entry = startpage
$(this).data("stack").push( # +$(this).find( .starter ).attr( id ));
}
});
添加内容:
$( div:jqmData(role="page") ).bind( "pagechange", function( event) {
var $targetPanel = $( event.target ),
$targetPage = # + $.mobile.path.stripHash( hash );
$targetPanel.data("stack").push($targetPage);
});
我现在需要知道哪一个阵列是最长的,最后一个条目是什么?
......
t 最大程度 数值或数学,因为我只有像ppageSome, #page 其他条目。 必须要有更好的办法,而不是通过所有阵列,使其时间长,努力达到高价值。
帮助!