1

我正在尝试跨域加载页面内容并将结果加载到 div 中。当我第一次访问该页面时,没有加载任何内容。当我刷新时,无论我查看哪篇文章,它都可以正常工作并且每次我访问该页面时都可以正常工作。我需要在 DOM 完全加载后找到一种方法来进行加载吗?

像这样的链接:/news_item.php?article_id=4379

---- news_item.php -----

 $(document).bind('pageinit', function(){
   $.mobile.ajaxEnabled = false; 
   $("#gametime").load('proxy.php?url=http://www.newsdomain.com/news/icehogs/?article_id=<?php echo $_REQUEST["article_id"] ?>  .article', function () {

     $("#gametime a").replaceWith( function() { return $(this).text(); });
     $("#gametime .links").replaceWith('');
     $("#gametime .social").replaceWith('');

 });

});

----- proxy.php ------

<?php echo file_get_contents($_GET['url']);?>
4

2 回答 2

0

将您的 javascript 文件放在页面 div 中,例如:

<div id="pageid" data-role="page">  
    <script src="javascriptfilename"></script>
    <div data-role="content"></div> 
</div>
于 2012-10-02T10:06:15.563 回答
0

是的,您可以,将您的代码放入$(function(){});事件中。

于 2012-10-01T17:35:41.847 回答