在jsp中获取已选中checkbox其他列的值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在jsp中获取已选中checkbox其他列的值相关的知识,希望对你有一定的参考价值。
用jquery实现比较方便1,获取已选中复选框的值的写法为
$("input[type='checkbox']:checked").val();
2,获取已选中复选框其他列的值的写法为
$("input[type='checkbox']:not(:checked)").val();
这两种方法返回的都是数组 参考技术A var checkArray=document.getElementsByName("checkbox名");
for(var i=0;i<checkArray.length;i++)
if(checkArray[i].checked)
........
你列中的值是从哪里来的
要是从数据库中查询出来的
在当前列里隐藏一个主键值 然后通过主键查询追问
列中的值是从数据库中查询出来的
追答那就传个主键到页面中的列
//放在tr的第一个td中
方法中
var checkArray=document.getElementsByName("checkbox名");
for(var i=0;i<checkArray.length;i++)
if(checkArray[i].checked)
var oTR=checkArray[i].parentNode.parentNode;
var zj=oTR.firstChild.firstChild.value;
//这个zj 就是你的主键了传到后台就能查询你要的那列的值了
.....
.....
那怎样判断checkbox是否被选中了呢?在哪个页面上写呢?是本页面还是提交页面?
追答checkArray[i].checked
这个就是判断选中的
还有提交页面? 你具体要做个什么样子的.
" />
加入购物车
以上都是A页面,点击“加入购物车”后跳到B页面,把A页面选中的值给传过去
哦 那应该写在A页面
通过上面的函数把你的选择了的主键值传到后台
后台查出值后调B页面
可以写出代码么?
参考技术D 你这个问题太模糊了,能说具体点吗?c#如何获取comboBox当前选中的值
我更改 comboBox1选项框的值后,但是comboBox1.SelectedItem.ToString();的值并没有更改,一直都是语文,不及格名单后面的输出就是名字和选项框的值,我已经改成 “数学” 了,输出的还是 “语文”;
1、新建winform项目用于测试comboBox。
2、新建完成的项目结构。
3、在Form1窗体中添加一个comboBox,编译。
4、点击comboBox,右键选择属性,找到【items】项,在弹出的【字符串集合编辑器】中输入模拟项1到10。
5、加入模拟值后的运行效果如下,下拉显示了所有的10个项,没有滚动条。
6、再次找到comboBox,设置如下两项:IntegralHeight:false;MaxLength:3。
参考技术A 1.添加combobox后做如下设置2.根据自己的需要在类中重写如下方法
// ==========================================================
// Combo box data source methods
// ==========================================================
- (NSInteger) numberOfItemsInComboBox: (NSComboBox *) aComboBox
#pragma unused (aComboBox)
return ([dataSource count]);
- (id) comboBox: (NSComboBox *) aComboBox objectValueForItemAtIndex: (NSInteger) index
#pragma unused (aComboBox)
return [dataSource objectAtIndex:index];
- (NSUInteger) comboBox: (NSComboBox *) aComboBox indexOfItemWithStringValue: (NSString *) string
#pragma unused (aComboBox)
return [dataSource indexOfObject:string];
- (NSString *) firstGenreMatchingPrefix: (NSString *) prefix
NSString *string = nil;
NSString *lowercasePrefix = [prefix lowercaseString];
NSEnumerator *stringEnum = [dataSource objectEnumerator];
while ( string = [stringEnum nextObject] )
if ([[string lowercaseString] hasPrefix:lowercasePrefix] )
return (string) ;
return (nil);
// firstGenreMatchingPrefix
- (NSString *) comboBox: (NSComboBox *) aComboBox completedString: (NSString *) inputString
#pragma unused (aComboBox)
// This method is received after each character typed by the user, because we have checked the "completes" flag for
// genreComboBox in IB.
// Given the inputString the user has typed, see if we can find a genre with the prefix, and return it as the suggested complete
// string.
NSString *candidate = [self firstGenreMatchingPrefix:inputString];
return (candidate ? candidate : inputString);
这些方法实现combobox在选择选项、自动完成时的处理方式。其中dataSource为NSArray。
3.设置combobox的datasource为实现上述方法的对象即可。 参考技术B 您要注意的是,你是“输入”的 数学,并非“选择”了 数学
正确代码:xx = comboBox1.Text;追问
这是comboBox1多选框,下拉有语文,数学,英语3项,不是选择了数学吗?
我改成comboBox1.Text;也还是不行
不会吧,我这里测试没问题啊!!!
有更换过里面的内容吗?我第一个是没问题,换了一个里面的值不会更新
追答试了,两种方法都可以!
comboBox1.Text;
comboBox1.SelectedItem.ToString();
string Id = drv.Row["id"].ToString();
以上是关于在jsp中获取已选中checkbox其他列的值的主要内容,如果未能解决你的问题,请参考以下文章