将字符串作为参数传递给函数onclick事件jquery

时间:2016-05-05 03:17:39

标签: javascript php jquery html json

我想请求帮助,因为我在使用for创建按钮时遇到问题,并在onclick中输入带参数的函数名称,但是这个参数是一个字符串,我得到一个数组并且循环结束所有按钮具有数组的最后一个元素的名称,而不是数组的每个位置..提前感谢您的帮助..

    <!DOCTYPE html>
 <html>
 <head>
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
 <script>
 function enviar(periodo){
 alert(periodo);
 }

 </script>
 </head>
 <body>
 <?php
 $formatos=
  array(array('idPeriodo'=>'pp2019'),
      array('idPeriodo'=>'pp2018'),
      array('idPeriodo'=>'pp2017'),
      array('idPeriodo'=>'pp2016'));

  for($l=0; $l< count($formatos); $l++){
 ?>
  <button onclick="enviar(<?php echo json_encode($formatos[$l]['idPeriodo'])?>)">Guardar</button>
<?php
      }
?>

</body>
</html>

4 个答案:

答案 0 :(得分:0)

您获取数组的最后一个元素,因为每次都重新定义per变量。使用此代码:

<?php
$formatos=
    array(array('idPeriodo'=>'pp2019'),
          array('idPeriodo'=>'pp2018'),
          array('idPeriodo'=>'pp2017'),
          array('idPeriodo'=>'pp2016'));
for($l=0; $l< count($formatos); $l++){
    $param = json_encode($formatos[$l]['idPeriodo']);
    $param = addslashes($param);
    ?>
          <button onclick="enviar(<?php echo $param; ?>)">Guardar</button>
          <?php
          }
?>

答案 1 :(得分:0)

你已经有了一个PHP循环,所以javascript位是没用的。 试试这个:

<?php     
for($l=0; $l< count($formatos); $l++){
    $per = json_encode($formatos[$l]['idPeriodo']);
?>
<button onclick="enviar('<?= $per ?>')">Guardar</button>
<?
}
?>

答案 2 :(得分:0)

你有什么理由想要它json_encode吗?这很有效。试试这个:

编辑

 <?php
   $formatos=    
   array(array('idPeriodo'=>'pp2019'),
   array('idPeriodo'=>'pp2018'),
   array('idPeriodo'=>'pp2017'), 
   array('idPeriodo'=>'pp2016'));


    for($l=0; $l< count($formatos); $l++){   


    $periodo = $formatos[$l]['idPeriodo'];        
   ?>
     <button onclick="enviar('<?php echo $periodo; ?>')">Guardar</button>      
   <?php
      }   
   ?>

答案 3 :(得分:0)

试试这个脚本,希望这会有效:

<?php
$formatos = array(
    array('idPeriodo'=>'pp2019'),
    array('idPeriodo'=>'pp2018'),
    array('idPeriodo'=>'pp2017'),
    array('idPeriodo'=>'pp2016')
);

for($l = 0; $l < count($formatos); $l++) {
?>
<button onclick='enviar(<?php echo json_encode($formatos[$l]['idPeriodo']);?>)'>Guardar</button>
<?php } ?>