0

jQuery Mobile と CodeIgniter を使用しています。私のインデックスページでは、

http://localhost:8888/hwezemail2/index.php/welcome/student/index

別のページへのリンクがあります。

http://localhost:8888/hwezemail2/index.php/welcome/student/myhomework/56

しかし、リンクをクリックすると以下に飛んで表示されません。

http://localhost:8888/hwezemail2/index.php/welcome/student/index#/hwezemail2/
index.php/welcome/student/myhomework/56

次に、URLが次のようになったらページを更新します

http://localhost:8888/hwezemail2/index.php/welcome/student/myhomework/56

しかし、それはコンテンツを表示しません。そのため、もう一度更新すると、コンテンツが表示されます。

それが表示されたら、問題はありません。初めてです。

私のPHPコードは次のとおりです。

echo '<a href="'. base_url().'index.php/welcome/student/myhomework/'
.$userid.'" data-role="button" data-inline="true" data-transition="pop" 
data-icon="star" data-mini="true" data-theme="c">Missed Homework</a>';
4

1 に答える 1

2

リンクに data-ajax="false" を追加したところ、問題は解決しました。

于 2012-10-22T10:38:36.170 に答える