gpt4 book ai didi

yii - Yii中Cgridview选中行列值

转载 作者:行者123 更新时间:2023-12-03 09:26:24 24 4
gpt4 key购买 nike

enter image description here

使用下面的代码我获取所有“名称”列值

$.fn.yiiGridView.getColumn("CGridViewUser",1).text();

如果我想获取选定行的“名称”列值(如图所示),如何实现?

最佳答案

首先向您的 GridView 添加一个 ID。

   <?php
$this->widget('zii.widgets.grid.CGridView', array
(
'dataProvider'=>$dataProvider,
'htmlOptions'=>array('id'=>'MyID'), //MyID is an ID to grid wrapper
........
........

现在,jQuery

       $("#MyID table tbody tr").click(function()
{
$this=$(this);
var firstColVal= $this.find('td:first-child').text();
var secondColVal= $this.find('td:nth-child(2)').text();
var lastColVal= $this.find('td:last-child').text();
alert(firstColVal);
});

它会起作用。

关于yii - Yii中Cgridview选中行列值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20770232/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com