|
|
|
อยากถามเรื่องการต่อ String PHP กับ JavaScript หน่อยครับ |
|
|
|
|
|
|
|
Code
<script type="text/javascript">
$(document).ready(function() {
$("#back").click(function(){
$('#itemname').fadeOut(1000, function(){
$('#itemname').html('<?php echo '<h3>'.$_SESSION['item_name1'].'</h3>' ?>');
$('#itemname').fadeIn(1000);
});
$('#pic').fadeOut(1000, function(){
$('#pic').html('<?php echo '<img src="images/'.$_SESSION['item_img1'].'" width="100%"></img>';?>');
$('#pic').fadeIn(1000);
});
$('#itemdetails').fadeOut(1000, function(){
$('#itemdetails').html('<?php echo '<h5>'.$_SESSION['item_details1'].'</h5>' ?>');
$('#itemdetails').fadeIn(1000);
});
});
อยากให้มันอ่านค่าเลข 1 จาก var val = 1; อะครับ
Code
$('#itemname').html('<?php echo '<h3>'.$_SESSION['item_name1'].'</h3>' ?>');
$('#pic').html('<?php echo '<img src="images/'.$_SESSION['item_img1'].'" width="100%"></img>';?>');
$('#itemdetails').html('<?php echo '<h5>'.$_SESSION['item_details1'].'</h5>' ?>');
|
|
|
|
|
Date :
2013-04-01 13:36:49 |
By :
BasilisK |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|