简体   繁体   中英

Trying to pass multiple parameters from php to javascript

Heres my current code in php with one parameter which works

 <?php
  $sid = "012";
  echo '<input type="button" value="Submit" onclick="changeConfirmed('.$sid.')">';

?>

Now im trying to pass two parameters or more, but cant seem to get it to work, here is my attempt:

 <?php
  $name="abc
  $sid = "012";
  echo '<input type="button" value="Submit" onclick="changeConfirmed('.$sid.','.$name.')">';

?>

您需要在参数周围加上引号,或者javascript将它们视为变量而不是字符串。

echo '<input type="button" value="Submit" onclick="changeConfirmed(\''.$sid.'\',\''.$name.'\')">';

If one of your JavaScript function parameters is a string, you'll have to correctly enclose it in quotes:

<?php
  $name="abc";
  $sid = "012";
  echo '<input type="button" value="Submit" onclick="changeConfirmed('.$sid.',\''.$name.'\')">';
?>

You get away with $sid not enclosed in quotes because it looks like a number.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM