我可以获得CGIDView的行ID。
$(document).ready(function()
{
$('body').on('dblclick', '#demo-grid tbody tr', function(event)
{
var
rowNum = $(this).index(),
keys = $('#demo-grid > div.keys > span'),
rowId = keys.eq(rowNum).text();
}
);
});
rowId 和帖子ID 相同。我的网格的第一列包含标题为hition到acitionView,其中帖子ID 和帖子标题作为参数。
当 id:2 和标题:测试帖 时, <a href="/Demo/index.php/post/2/A+Test+Post">A Test Post</a>
Yii::app()->createUrl('post/', array(
'id'=>$this->id,
'title'=>CHtml::encode($data->title)
但是现在我不知道如何在行被双击的情况下访问jquery函数中的href来重定向。有什么想法吗?