单选按钮提交?

时间:2015-12-13 18:13:26

标签: c# html asp.net

我希望下面的两个最上面的单选按钮(左上角和右上角)更改红色边界内的html(div元素)。每个单选按钮代表一个用于订购服务的表单(在屏幕截图中省略了提交按钮),因此单选按钮应该在html之间切换,给出这些订购表单(如有疑问,我&# 39;谈论现实生活中的服务,比如打扫房间。

但是单选按钮'在提交表单之前,不会引发onserverchange事件。有关如何强制提交页面的特定部分以便执行所有必要代码的任何想法?不会导致提交实际的服务表单(因为该提交按钮与电子邮件生成方法相关联)。

enter image description here

我希望你理解我xD我觉得谈论这个很棘手,因为像服务和形式这样的词有双重含义,一个irl和一个代码。

这是两个按钮的html



@"Cat.jpg"




这是事件代码:



if (tableView == self.searchDisplayController.searchResultsTableView) {
    cell.textLabel.text = [_searchResults objectAtIndex:indexPath.row];
    cell.textLabel.textColor = [UIColor blackColor];

    if ([[_ArrayTitle objectAtIndex:indexPath.row]isEqualToString:@"Cat"]) {
        cell.imageView.image = [_ArrayImage objectAtIndex:0];
    }
    if ([[_ArrayTitle objectAtIndex:indexPath.row]isEqualToString:@"Dog"]) {
        cell.imageView.image = [_ArrayImage objectAtIndex:1];
    }
    if ([[_ArrayTitle objectAtIndex:indexPath.row]isEqualToString:@"Gnat"]) {
        cell.imageView.image = [_ArrayImage objectAtIndex:2];
    }
    }




0 个答案:

没有答案