当我点击页面上的示例链接按钮时,会弹出一个简单的对话框。我想要做的是将 onclick jquery 函数从链接更改为我表中的一个按钮。这些按钮当前将 Web 浏览器定向到新页面,但我希望它们打开带有相应视图文件的 dailog 框。我正在使用 CakePHP 2.x。我研究过使用 href 但我不知道该怎么做。
这是按钮所在的 index.ctp 文件的代码。
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/start/jquery-ui.css" type="text/css" media="all" />
<a href="#">link</a> <!-- this is to test if the dialog box works -->
<div id="dialog"></div>
<script>
var p = '<p>test test test test test test</p>';
$('#viewButton').click(function()
{
// $(location).attr('href', 'view.ctp'); // not sure if this line of code is on the right track or not
$(p).dialog(
{
width: 400,
height: 400,
modal: true,
resizable: true,
buttons:{
OK: function(){
$(this).dialog("close");}}
});
})
</script>
<p><marquee><u>Local Clocks</u></marquee></p>
<table>
<thead><tr>
<th>Id</th>
<th>Name</th>
<th>Actions</th>
</tr></thead>
<tbody>
<?php
foreach($localClocks as $LocalClock) { ?>
<tr>
<!-- <td><?php //echo $LocalClock['LocalClock']['id']; ?></td> -->
<td><?php echo $this->Html->link($LocalClock['LocalClock']['id'], array('controller'=>'localClocks',
'action'=>'view', $LocalClock['LocalClock']['id'])); ?></td>
<td><?php echo $LocalClock['LocalClock']['name']; ?></td>
<td><input type="button" class="viewButton" value="View" onclick="location.href='<?php echo $this->Html->url(array('controller' => 'localClocks', 'action' => 'view', $LocalClock['LocalClock']['id'])); ?>';"/>
<input type="button" class="editButton" value="Edit" onclick="location.href='<?php echo $this->Html->url(array('controller' => 'localClocks', 'action' => 'edit', $LocalClock['LocalClock']['id'])); ?>';"/>
</td>
</tr>
<?php } ?>
</tbody>
</table>
我需要帮助将按钮 onclick 事件切换为打开对话框并让对话框显示相应的视图页面。
提前致谢