2013-06-19 97 views
-1

如何提示 這裏寫PHP代碼(變量)是我的代碼: -jQuery的工具提示幫助需要

<head> 
<link type="text/css" rel="stylesheet" href="css/screen.css" media="screen" /> 
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> 
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> 
<script type="text/javascript" src="js/chilltip-packed.js"></script> 
<script type="text/javascript"> 
$(function() { 

$('.ChillTip').ChillTip(); 
$('.ChillTip1').ChillTip({ 
CTBK:'#fff', 
CTBC:'#000',  
CTW:'150' 
}); 
}); 

</script> 
</head> 
<body> 
<?php 
$abc= 'Urvisha'; 
?> 

<a href="chilltip" class="ChillTip1" title="&#60;span class=&#34;one&#34;&#62;Blue&#60;&#47;span&#62;, &#60;span class=&#34;two&#34;&#62;Pink&#60;&#47;span&#62;, &#60;span class=&#34;three&#34;&#62;Green&#60;&#47;span&#62;, &#60;span class=&#34;four&#34;&#62;Purple&#60;&#47;span&#62;, &#60;span class=&#34;five&#34;&#62;Red&#60;&#47;span&#62;, &#60;span class=&#34;six&#34;&#62;Yellow&#60;&#47;span&#62;">For more info.</a> 
<button class="ChillTip" title="This is a button example">BUTTON</button> 

</body> 

我想$ ABC在我的提示 如果我寫裏面的標題$ ABC =」 「然後$ ABC顯示的是不是它的價值 plz幫助我.....

回答

1

你只需要變量呼應到HTML:

<button class="ChillTip" title="<?php echo $abc?>">BUTTON</button> 
+0

謝謝@immulation礦釷非常愚蠢的錯誤又一次。它完全從我的腦海裏消失了...... – User1988

+0

它發生了:)如果解決方案奏效,你應該接受答案 – immulatin