jquery移动附加/前置文本

时间:2011-08-11 15:58:48

标签: dom jquery-mobile prepend

我想使用jQuery / jQuery mobile向页面添加一些代码, 但是我正在试用一些page()pageshow以及refresh方法。
这是我的代码。你可以按原样剪切,粘贴和运行。

<!DOCTYPE html> 
<html> 
    <head> 
    <title>Page Title</title>   
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.css" />
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
    <script type="text/javascript" src="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.js"></script>

    <script>
    //$(document).ready(function()                  // get error when I use this
    $('div').live('pageshow', function () {  
        function fnCreateGroups(){
            var section = "<p>and add a whole bunch of html code...</p>";
             myClone = $(section);  
             alert((myClone).html());  // this works
             myClone.appendTo("#placeholder").page(); // but not appending          
        }
        fnCreateGroups();
    });         
    </script>

</head> 
<body> 
    <div data-role="page">
        <div id="placeholder">
            <div data-role="content">
                <div id="placeholder">this is a small amount of html code.</div>
            </div>
        </div>      
    </div>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

Beta2发行说明:

而不是:

myClone.appendTo("#placeholder").page();

尝试

myClone.appendTo("#placeholder").trigger('create');

来自你的评论:

您正在所有div的

上运行live()
$('div').live('pageshow', function () 

尝试使用页面ID

$('#change_this_page_only').live('pageshow', function () 

和此:

<div data-role="page">

这样的事情:

<div data-role="page" id="change_this_page_only">