0

我为 wordpress 网站制作了 Jquery mobile。现在我正在寻找适用于 Android 公开市场的 APK。任何人都可以帮助我更多的细节 Jquery 移动和 PHP 到 APK 应用程序。

我在这里是全新的。

谢谢

这是带有 PHP Wordpress索引代码的Jquery mobile

    <ul data-role="listview" data-theme="b" data-filter="true" data-counttheme="e">
    <?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
    <li>
        <?php the_post_thumbnail(); ?>
        <h2> 
            <a href="<?php the_permalink(); ?>" data-transition="slidedown"><?php the_title(); ?></a> 
        </h2>
        <article> <?php echo the_excerpt(); ?> </article>

    </li>
    <?php endwhile; endif; ?>
    </ul>       

4

1 回答 1

0

嗯,PHP 是一种服务器端语言,你不能在 android 中运行 php jQuery 网站,你可以用 webview 制作一个 APK 文件,然后在远程服务器中打开一个网站,但是你不能在 android 应用程序中运行 php 网站在你的情况下APK。

于 2013-06-29T14:47:49.223 回答