0

我在 jquerymobile 工作。我只是想从标签中获取字符串并将其转换为 int 然后递增一。这是我在jsfiddle中所做的

我的代码是

<div data-role="footer" data-position="fixed" data-tap-toggle="false"> 
                <div data-role="navbar" data-mini="true" >
                    <a href="#" data-role="button" class="HeaderButton" data-icon="edit">&nbsp;</a>
                    <div data-role="controlgroup" data-type="horizontal" style="float: right;padding-right: 2%;">
                        <a href="#" data-role="button" id="aPreviousPage" onclick="PreviousPage()" data-icon="arrow-l" data-iconpos="left" data-theme="a">&nbsp;</a>
                        <a data-role="label" id="aPager" class="ui-disabled" style="padding:0;">2</a>

**<!--  (2)       i want 2 from id="aPager" but it gives me some string with it i m and jquerymobile is already using this  class '.ui-btn-text' -->**



 <a href="#" data-role="button" id="aNextPage"  onclick="NextPage()"   data-icon="arrow-r"  data-theme="a" data-iconpos="notext" data-inline="true">&nbsp;</a>
                    </div>
                </div><!-- /navbar -->
            </div><!-- /footer --> 
4

1 回答 1

0

字符串到 int:parseint(x)其中 x = 你的字符串

将 int 递增/递减 1:(x + 1) 或 (x - 1) 其中 x = 您的起始 int。

组合:(parseint(x) + 1)。

在您的示例中:(parseInt($('.ui-btn-text').text()) + 1)

编辑*此外,在您的 jsfiddle 中,该行alert('NextPage function=' + parseInt(pager);缺少结尾“)”它应该是alert('NextPage function=' + parseInt(pager));

于 2013-10-02T12:56:40.317 回答