variabile php in jquery
Vorrei passare una varibile php in jquery ma non so come fare:
$value_test = 1;
drupal_add_js('
jQuery(document).ready(function(){
jQuery("div#large-slideshow a#slide"+$value_test).css("background", "transparent url(/files/images/feature-images/consumer.jpg) no-repeat center top");
});', array('type' => 'inline', 'weight' => 1));
per passare $value_test come devo fare? Non ho trovato in giro una soluzione. Qualcuno lo sa?
Risposte
Ciao, prova
Ciao, prova così:
<?php
$value_test = 1;
drupal_add_js('
jQuery(document).ready(function(){
jQuery("div#large-slideshow a#slide' . $value_test . '").css("background", "transparent url(/files/images/feature-images/consumer.jpg) no-repeat center top");
});',
array(
'type' => 'inline',
'weight' => 1
)
);
?>
questo ti scriverà
<?php
...
jQuery("div#large-slideshow a#slide1").css(...
...
?>
sulla pagina.
(Nessun soggetto)
Scusate sono andato avanti
Scusate sono andato avanti nel lavoro ed ho dimenticato di ringraziarvi.Funziona, grazie mille