admin管理员组

文章数量:1306209

I have problem with Cake PHP delete javascript confirmation dialog.

I am using this code:

<td><?php echo $this->Html->link('Delete',
                                        array('controller' => 'RealEstate', 'action' => 'delete',$r['RealEstate']['id']),
                                        array('onclick'=>'return confirm(\"Are you sure?\");'))?> </td>

and this produce html:

<td><a onclick='return confirm(\"Are you sure?\");' href="/cake1/RealEstate/delete/65">Delete</a> </td>

as you can see this produce wrong Html.

How to fix this ?

FIXED: Problem was in back slashes \"Are you sure?\", just removed \ and this works well "Are you sure?"

I have problem with Cake PHP delete javascript confirmation dialog.

I am using this code:

<td><?php echo $this->Html->link('Delete',
                                        array('controller' => 'RealEstate', 'action' => 'delete',$r['RealEstate']['id']),
                                        array('onclick'=>'return confirm(\"Are you sure?\");'))?> </td>

and this produce html:

<td><a onclick='return confirm(\"Are you sure?\");' href="/cake1/RealEstate/delete/65">Delete</a> </td>

as you can see this produce wrong Html.

How to fix this ?

FIXED: Problem was in back slashes \"Are you sure?\", just removed \ and this works well "Are you sure?"

Share Improve this question edited Aug 29, 2015 at 15:12 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Mar 19, 2014 at 22:59 NezirNezir 6,92512 gold badges57 silver badges84 bronze badges 1
  • 1 Yeah, no need to escape it there... – skywalker Commented Mar 19, 2014 at 23:24
Add a ment  | 

3 Answers 3

Reset to default 5

Try this

<?php 
     echo $this->Html->link('',array('controller'=>'Mycont','action'=>'deletepic',$id),
          array('confirm'=>'Are you sure you want to delete the image?'));
?>

try this

 echo $this->Form->postLink(__('Delete'), array(
                               'controller'=>'RealEstate',
                               'action' => 'delete',
                                $r['RealEstate']['id']),
                                null, 
                                __('Are you sure you want to delete # %s?', 
                                $r['RealEstate']['id'])
 ); 

FIXED: Problem was in back slashes \"Are you sure?\", just removed \ and this works well "Are you sure?"

本文标签: javascriptCakePHP delete confirmationStack Overflow