将变量从php传递给javascript

时间:2012-01-13 20:30:43

标签: php javascript

我正在尝试将一个php变量传递给我的LinkONCLick4函数,但由于某种原因,该变量没有被传递给conversation.php而且该函数甚至不起作用。我之前在我的一个网页上使用了同样的功能,它运行良好;我不知道为什么它现在不起作用。我有人可以帮助我,这将是伟大的!

<script>
    function LinkOnClick4(box) {
    $('#friendresults').load('conversation.php?id=' + box);
    }
    </script>
    <div id='showfriends' style='display:none;'>
    <div style="margin-top:5px;"><input type='text' name='searchfriends' id='searchfriends' class='searchfriends' autocomplete="off" value="Search for a friend..." onClick="this.style.border = '1px solid #4F94CD'; document.getElementById('friendresults').style.visibility = 'visible';" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue; this.style.border = '1px solid #5E5E5E';" onkeyup='searchfriends()'/></div>
    <div id='hrdiv3'></div>
    <div id='friendresults' name='friendresults' style='float:left;'>
    <?php
    $construct = "SELECT * FROM acceptedfriends WHERE profilename='$profilename' ORDER BY id DESC LIMIT 6";
    $run = mysql_query($construct);
    $foundnum = mysql_num_rows($run);
    while ($runrows = mysql_fetch_assoc($run))
    {
    $users = $runrows['username'];
    $location = $runrows['imagelocation'];
    $image = "<img src='$location' style='width:60px; height:40px;' />";
    if ($profilename==$username)
    {
    echo '<div id="hovercolor2" onclick="LinkOnClick4('.$users.')" style="width:294px; float:left;"><table><tr><td>'.$image.'</td><td><div style="margin-bottom:5px;"><a href="http://www.pearlsquirrel.com/'.$users.'" target="_blank">'.$users.'</a></div><div><a href="http://www.pearlsquirrel.com/conversation.php/'.$pageusers.'" style="text-decoration:underline;" target="_blank"><div style="font-size:.7em";>Click to enter a conversation.</div></a></div></td></tr></table></div><div id="hrdiv3" style="float:left; width:298px;"></div>';
    }
    else
    {
    echo '<div id="hovercolor2" style="width:294px; float:left;"><table><tr><td>'.$image.'</td><td><a href="http://www.pearlsquirrel.com/'.$users.'" target="_blank">'.$users.'</a></td></tr></table></div><div id="hrdiv3" style="float:left; width:298px;"></div>';
    }
    }
    ?>
    </div>
    </div>
    </div>
    </div>
</div>

1 个答案:

答案 0 :(得分:1)

尝试用此

替换你的行
echo '<div id="hovercolor2" onclick="LinkOnClick4(\'' . $users . '\')" style="width:294px; float:left;"><table><tr><td>'.$image.'</td><td><div style="margin-bottom:5px;"><a href="http://www.pearlsquirrel.com/'.$users.'" target="_blank">'.$users.'</a></div><div><a href="http://www.pearlsquirrel.com/conversation.php/'.$pageusers.'" style="text-decoration:underline;" target="_blank"><div style="font-size:.7em";>Click to enter a conversation.</div></a></div></td></tr></table></div><div id="hrdiv3" style="float:left; width:298px;"></div>';

除此之外,一切看起来都很好,我找不到任何可能导致问题的原因