Cakephp 2.0:使用 javascript 和 Html->link()

发布于 2024-12-22 16:01:21 字数 631 浏览 1 评论 0原文

任何人都可以提供一种使用以下代码的方法,该方法不会导致使用 HTML 特殊字符来代替单引号,或者提供一种产生预期结果的替代方法?

<?php echo $this->Html->link(
                         'View', 
                         $row['view'], 
                         $options = array(
                              'onMouseOver'=>'setHelp(\''.$row['id'].'\')'
                               )
                         );
?>

结果看起来像:

 <li>
     <a href="--url--" onMouseOver="setHelp(&#039;--js_param--&#039;)">
 </li>

显然我做错了。但 Cake API 似乎表明 HtmlHelper 的 link() 方法是 javascript 就绪链接的首选方法。帮助?

Can anyone provide either a method of using the following code that doesn't result in HTML special characters being used in place of the single quotes, or an alternative way to produce the intended result?

<?php echo $this->Html->link(
                         'View', 
                         $row['view'], 
                         $options = array(
                              'onMouseOver'=>'setHelp(\''.$row['id'].'\')'
                               )
                         );
?>

The result looks like:

 <li>
     <a href="--url--" onMouseOver="setHelp('--js_param--')">
 </li>

Clearly I am doing this wrong. But the Cake API seems to suggest that HtmlHelper's link() method is the go-to for javascript-ready links. Help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦纸 2024-12-29 16:01:21
<?php echo $this->Html->link(
                     'View', 
                     $row['view'], 
                     array(
                          'onMouseOver'=>'setHelp(\''.$row['id'].'\')',
                          'escape' => false
                     )
               );
?>
<?php echo $this->Html->link(
                     'View', 
                     $row['view'], 
                     array(
                          'onMouseOver'=>'setHelp(\''.$row['id'].'\')',
                          'escape' => false
                     )
               );
?>
何必那么矫情 2024-12-29 16:01:21

我认为你的代码应该可以工作,但是你可以强制 Cake 不要转义输出:

echo $this->Html->link(
  'View', 
  $row['view'],
  array(
    'onMouseOver'=>'alert(\''.$row['id'].'\');',
    'escape' => false
  )
); 

I think your code should work, but you can force Cake not to escape the output:

echo $this->Html->link(
  'View', 
  $row['view'],
  array(
    'onMouseOver'=>'alert(\''.$row['id'].'\');',
    'escape' => false
  )
); 
黎歌 2024-12-29 16:01:21

使用纯html怎么样?

   <li>
     <a></a>
  </li>

他们确实建议尽可能使用蛋糕标签和所有内容(遵循约定),但有时使用常见的 html 来超越问题并没有错......

How about using pure html?

   <li>
     <a></a>
  </li>

They really do suggest use always if possible cake tags and all(following the conventions), but sometimes is not wrong to use common html to surpass a prob...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文