如何将字符串传递给包含特殊字符的javascript函数

时间:2011-01-24 08:49:33

标签: php javascript ajax

我有这个小小的PHP片段:

       // $test='test';

       $test='just a test';
       echo "<a href=javascript:myfunction($number,$src_req,\"".$test."\")><img style='z-index:$z; src='images/$src'/></a>";

我有这个小小的ajax片段......

function myfunction(param1,param2,param3)
{
  var xmlHttp = getXMLHttp();
  xmlHttp.onreadystatechange = function()
  {
    if(xmlHttp.readyState == 4)
    {
      HandleResponse2(xmlHttp.responseText);
    }
  }
  var p1=param1;
  var p2=param2;
  var p3=param3;
  xmlHttp.open("GET", "config/ajax_pop.php", true); 
  xmlHttp.send(null);


  $( '#ResponseDiv2' ).dialog({     
        height: 140, 
        modal: true, 
        position: [490,140], 
        title:param3,

  }); 
  .....

我喜欢将我的$ test php变量传递给我的javascript函数,但不幸的是,如果我的$ test变量包含 space 字符,则JS脚本无效。如果我的$ test变量只包含一个单词,那么效果很好。

在浏览器中,当我查看链接时,我看到:

a,如果$ test变量只包含一个单词,那么:javascript:myfunction(1,1,“test”)

b,如果$ test变量包含多个单词,那么:javascript:myfunction(1,1,“只是

感谢您的帮助...

3 个答案:

答案 0 :(得分:2)

使用json_encode():http://php.net/json_encode

更新:以下是一个使用示例:

<?php

$number = 1;
$src_req = 2;
$z = 3;
$src = 4;

$test = 'just a test
with spaces and new lines';
echo "<a href=javascript:myfunction($number,$src_req," . json_encode($test) .")><img style='z-index:$z; src='images/$src'/></a>";

如果不起作用,请尝试找出它无法正常工作的确切方式。 “不工作”问题与“然后修复”答案一样有用。

无论如何,将PHP,HTML,JavaScript和CSS混合在一行代码中即使是快速测试也是不值得的。功能和文件中的分离内容可以让您的生活更轻松。

答案 1 :(得分:1)

您必须使用双引号将href本身包装起来,然后使用单引号包含值:

href=\"javascript:myfunction($number, $src_req, '".$test."')\"

答案 2 :(得分:0)

您可以使用php函数urlencode转义字符串,并可以使用javascripts unescape进行unescape。

你必须使用unescape解析js函数中的第三个参数......

你可以使用json作为ÁlvaroG。Vicario提到的。