stephensu 发表于 2013-12-20 14:37:30

photoswipe插件在phonegap插件点击图后出现乱码

<link href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" rel="stylesheet" />
      <link href="jquery-mobile.css" type="text/css" rel="stylesheet" />
      <link href="photoswipe.css" type="text/css" rel="stylesheet" />

      <script type="text/javascript" src="photojs/klass.min.js"></script>
      <script type="text/javascript" src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>
      <script type="text/javascript" src="code.photoswipe.jquery-3.0.5.min.js"></script>
      <script type="text/javascript">

(function(window, $, PhotoSwipe){
                       
                        $(document).ready(function(){
                               
                                $('#Gallery1')
                                        .live('pageshow', function(e){
                                               
                                                var
                                                        currentPage = $(e.target),
                                                        options = {},
                                                        photoSwipeInstance = $("#gallery2 a", e.target).photoSwipe(options,currentPage.attr('id'));
                                                       
                                                return true;
                                               
                                        })
                                       
                                        .live('pagehide', function(e){
                                               
                                                var
                                                        currentPage = $(e.target),
                                                        photoSwipeInstance = PhotoSwipe.getInstance(currentPage.attr('id'));

                                                if (typeof photoSwipeInstance != "undefined" && photoSwipeInstance != null) {
                                                        PhotoSwipe.detatch(photoSwipeInstance);
                                                }
                                               
                                                return true;
                                               
                                        });
                               
                        });
               
                }(window, window.jQuery, window.Code.PhotoSwipe));
               
        </script>

<div id="Gallery1" title="作品" class="panel" data-header="customer_header" data-footer="customer_footer" data-nav="side_home" data-tab="footer_zuopin">

               <ul class="gallery" id="gallery2">
               
                <li><a href="photoimages/full/001.jpg" rel="external"><img src="photoimages/thumb/001.jpg" alt="Image 001" /></a></li>
                <li><a href="photoimages/full/002.jpg" rel="external"><img src="photoimages/thumb/002.jpg" alt="Image 002" /></a></li>
                <li><a href="photoimages/full/003.jpg" rel="external"><img src="photoimages/thumb/003.jpg" alt="Image 003" /></a></li>
                <li><a href="photoimages/full/004.jpg" rel="external"><img src="photoimages/thumb/004.jpg" alt="Image 004" /></a></li>
                <li><a href="photoimages/full/005.jpg" rel="external"><img src="photoimages/thumb/005.jpg" alt="Image 005" /></a></li>
                <li><a href="photoimages/full/006.jpg" rel="external"><img src="photoimages/thumb/006.jpg" alt="Image 006" /></a></li>
                <li><a href="photoimages/full/007.jpg" rel="external"><img src="photoimages/thumb/007.jpg" alt="Image 007" /></a></li>
                <li><a href="photoimages/full/008.jpg" rel="external"><img src="photoimages/thumb/008.jpg" alt="Image 008" /></a></li>
                <li><a href="photoimages/full/009.jpg" rel="external"><img src="photoimages/thumb/009.jpg" alt="Image 009" /></a></li>

                </ul>

               </div>

不知道是怎么回事情呢,请各位大侠指点

caishaolin 发表于 2015-4-30 21:31:35

很不错,不错,学习学习。跨平台得顶起

qq69154565 发表于 2015-5-1 11:44:00

人不错,学习学习 感觉phonegap+html越来越火了。

caishaolin 发表于 2015-5-1 01:36:08

好东西啊,谢谢分享 感谢phonegap中文网

citydream 发表于 2015-4-30 21:48:13

非常好 感谢 开始学习html5 app开发了

长白山山长 发表于 2015-4-30 22:33:48

html5 是趋势
页: [1]
查看完整版本: photoswipe插件在phonegap插件点击图后出现乱码