-3

我有任何页面,并在此(索引)中包含 jquery 库和 css。

现在我有 twitter 的代码,比如加载更多。这行得通,但是当我需要使用 jQuery 删除它时,它不起作用(在我的索引中有另一个代码)。问题是:jquery 库未附加到外部 php 文件中。

我在彩盒中有同样的问题。当我在颜色框中加载 iframe 时,我的索引 jQuery 没有附加到外部文件,所以我将手动 jquery 放到外部文件中!

没有办法只使用jquery原始文件(我的索引)吗?

EX js 加载更多:

<script type="text/javascript">
$(function() {
//More Button
$('.more').live("click",function() 
{
var ID = $(this).attr("id");
if(ID)
{
$("#more"+ID).html('<img src="moreajax.gif" />');

$.ajax({
type: "POST",
url: "ajax_more.php",
data: "lastmsg="+ ID, 
cache: false,
success: function(html){
$("ol#updates").append(html);
$("#more"+ID).remove();
}
});
}
else
{
$(".morebox").html('The End');

}


return false;


});
});

</script>

PHP:

 <?php
include("config.php");


if(isSet($_POST['lastmsg']))
{
$lastmsg=$_POST['lastmsg'];
$result=mysql_query("select * from messages where msg_id<'$lastmsg' order by msg_id desc limit 9");
$count=mysql_num_rows($result);
while($row=mysql_fetch_array($result))
{
$msg_id=$row['ms_gid'];
$message=$row['message'];
?>


<li>
<?php echo $message; ?>
</li>


<?php
}


?>

<div id="more<?php echo $msg_id; ?>" class="morebox">
<a href="#" id="<?php echo $msg_id; ?>" class="more">more</a>
</div>

<?php
}
?>

HTML:

    <head><script type="text/javascript" src="./jquery.min.js"></script></head>
    <div id='container'>
    <ol class="timeline" id="updates">
    <?php
    $sql=mysql_query("select * from messages ORDER BY msg_id DESC LIMIT 9");
    while($row=mysql_fetch_array($sql))
    {
    $msg_id=$row['msg_id'];
    $message=$row['message'];
    ?>
    <li>
    <?php echo $message; ?>
    </li>
    <?php } ?>
    </ol>
    <div id="more<?php echo $msg_id; ?>" class="morebox">
    <a href="#" class="more" id="<?php echo $msg_id; ?>">more</a>
    </div>
    </div>
4

1 回答 1

0

是因为您的 jquery 在文档准备好后加载,然后您调用另一个 php 文件。您应该使用不带 $(document).ready(); 的 jquery 函数;所以你将能够在任何地方使用 jquery 函数。另一个重要的事情是,而不是使用

$(function(){
    $('#selector').click(function(){
       'your other code'  

    });
});

像这样使用

function my_function(){
  your code
}

和 html

<input type = "text" onclick = 'my_function();'>

希望这会有所帮助。这样您就可以在任何地方调用这些函数。如果您在第一个 php 中调用或加载另一个 php 文件,请确保将其加载到位于第一个 php 文件中的 div 中。

于 2012-04-07T09:30:54.750 回答