2017-08-31 78 views
0
<?php 
$short_description = 
substr($brand_description,0,299);//$short_description is storing the substring 
echo '<span>'; 
<p>About:</p> '.$short_description.'</span>'; 
echo '<span id="read_more">'; echo '<button onclick="display_more()"> Read more</button>'; echo '</span>'; 
?> 

//的onclick的更多按鈕,我想$ SHORT_DESCRIPTION存儲整個的$ brand_description我有一個PHP變量,它存儲的字符串的子字符串。但在一個按鈕的點擊,我想它來存儲整個字符串

+0

歡迎的話,請快速瀏覽一下在[如何創建一個最小的,完整的,並且可驗證的示例](https://stackoverflow.com/help/mcve) – hassan

+0

和[什麼話題c一個我問](http://stackoverflow.com/help/on-topic) 和[什麼話題避免](https://stackoverflow.com/help/dont-ask) 和[如何問一個好問題](http://stackoverflow.com/help/how-to-ask) 和[完美的問題](http://codeblog.jonskeet.uk/2010/08/29/writing-the-perfect-問題/)和[參觀](http://stackoverflow.com/tour) – RiggsFolly

+0

將整個php變量存儲在一個javascript變量中,並在點擊按鈕時顯示它 – MacBooc

回答

0

嘗試this

和在你的js部分做這樣

$('#changeMe').text('<?php echo $brand_description;?>'); 
相關問題