- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在创建一个接口(interface),该接口(interface)将从两个不同的数据库获取数据,将该数据提供给该接口(interface),并使用该接口(interface)来确定哪条信息将存储到新数据库中。 (基本上创建一个系统来合并数据库,但用户可以选择将哪些数据传递到新数据库。)在此界面中还会有一个文本框,以便用户可以输入数据,以防两个数据库都有不正确的数据。
目前,我只使用这两个数据库的一部分,并希望实现一种复选框系统,用户可以选中一个复选框来选择数据,如果他们想要另一个复选框,则前一个复选框将转到错误的。
我找到了一种方法来做到这一点,但它会吸收整个表单,一旦你尝试使用另一个表行,它就会崩溃。我想尝试让 JS 独立于每个表行。有没有办法对每一行实现这样的机制?这是我当前的代码:(Ps. HTML曾经是PHP文件)
HTML:
<html>
<head>
<script src="jquery-1.12.4.min.js"></script>
<script src="formAdd.js"></script>
<link rel="stylesheet" type="text/css" href="dbInfo.css">
<title>Database 1</title>
</head>
<body>
<form name="contactform" method="post" action="">
<table id="Forms" width="100%">
<col width="10%" >
<col width="30%" >
<col width="30%" >
<col width="30%" >
<tr>
<th style="background-color:#7FCCCC"> Fields </th>
<th style="background-color:#7FCCCC"> DB 1 </th>
<th style="background-color:#7FCCCC"> DB 2 </th>
<th style="background-color:#7FCCCC"> DB Nueva </th>
</tr>
<tr style="background-color:#CCCCCC">
<td style="font-weight:bold"> Fecha UTC </td>
<td> <input type="checkbox" name="FechaUTC1" onclick="CopyF(this.form)" value="September 14" align="right"> September 14 </td>
<td> <input type="checkbox" name="FechaUTC2" onclick="CopyF2(this.form)" value="November 17" align="right"> November 17 </td>
<td> <input type="text" name="FechaUTC3" size="60"> </td>
</tr>
</table>
<!-- <tr>
<td style="font-weight:bold"> Fecha Local </td>
<td> <input type="checkbox" name="FechaLoc1" onclick="CopyFLoc(this.form)" value="<?php echo $test ?>" align="right"> Septiembre 13, 2016 23:06:31 Hora Local </td>
<td> <input type="checkbox" name="FechaLoc2" onclick="CopyFLoc3(this.form)" value="<?php echo $test ?>" align="right"> Noviembre 14 2016 23:06:31 Hora Local </td>
<td> <input type="text" name="FechaLoc3" size="60"> </td>
</tr>
-->
</table>
<p>
<input type="submit" value="Submit">
</p>
</form>
</body>
</html>
JS:
function CopyF(f) {
if(f.FechaUTC1.checked == true) {
f.FechaUTC3.value = f.FechaUTC1.value;
if(f.FechaUTC2.checked == true)
f.FechaUTC2.checked = false;
}
}
function CopyF2(f) {
if(f.FechaUTC2.checked == true) {
f.FechaUTC3.value = f.FechaUTC2.value;
if(f.FechaUTC1.checked == true)
f.FechaUTC1.checked = false;
}
}
最佳答案
对于问题的第一部分,我相信您最好使用单选按钮,因为它已经具有您尝试使用的功能类型(只能单击其中一个)。您可以很容易地添加第三个选项,即“其他”,从而启用您可以写入的输入框。
确保它不会崩溃的最简单方法是确保每组单选框的行号是唯一的。
我在这里使用一个名为 jQuery 的库。它非常受欢迎,并且具有许多内置功能。如果您之前从未使用过 jQuery,我建议您访问 CodeSchool并至少完成第一部分,以熟悉我所写的内容。
$(function() {
// this way of calling the dollar sign ($) function is a shorthand for $(document).ready();
$('input.fecha-unico').on('click', function() {
//I am adding an event to all inputs with the class 'fecha-unico'
var $this = $(this); //the this object is itself just the HTMLElement object from your browser. Here I am wrapping it in the jquery functions to allow myself access to the functions jquery has.
var $input = $this.closest('tr').find('input:text');
//I am finding the closest TR to this radio element, and then searching ('finding') a textbox child.
if ($this.val() == '-1') {
//If this checkbox's value is -1, it means we are using the 'other' checkbox, and need to enable the text input.
$input.prop('disabled', false);
} else {
//Otherwise, we need to make sure the writing thing is disabled (say you clicked the other box but then realized you wanted the first checkbox instead).
if (!$input.prop('disabled')) {
$input.prop('disabled', true)
}
}
});
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form name="contactform" method="post" action="">
<table id="Forms" width="100%">
<col width="10%">
<col width="30%">
<col width="30%">
<col width="30%">
<tr>
<th style="background-color:#7FCCCC">Fields</th>
<th style="background-color:#7FCCCC">DB 1</th>
<th style="background-color:#7FCCCC">DB 2</th>
<th style="background-color:#7FCCCC" colspan="2">DB Nueva</th>
</tr>
<tr style="background-color:#CCCCCC">
<td style="font-weight:bold">Fecha UTC</td>
<td>
<input class="fecha-unico" type="radio" name="FechaUTC1" value="September 14" align="right">September 14</td>
<td>
<input class="fecha-unico" type="radio" name="FechaUTC1" value="November 17" align="right">November 17</td>
<td>
<label>Other:
<input type="radio" class="fecha-unico" name="FechaUTC1" value="-1" />
</label>
</td>
<td>
<input type="text" name="FechaUTC3" size="60" disabled>
</td>
</tr>
<tr style="background-color:#CCCCCC">
<td style="font-weight:bold">Fecha UTC</td>
<td>
<input class="fecha-unico" type="radio" name="FechaUTC2" value="September 14" align="right">September 14</td>
<td>
<input class="fecha-unico" type="radio" name="FechaUTC2" value="November 17" align="right">November 17</td>
<td>
<label>Other:
<input type="radio" class="fecha-unico" name="FechaUTC2" value="-1" />
</label>
</td>
<td>
<input type="text" name="FechaUTC3" size="60" disabled>
</td>
</tr>
</table>
<!-- <tr>
<td style="font-weight:bold"> Fecha Local </td>
<td> <input type="checkbox" name="FechaLoc1" onclick="CopyFLoc(this.form)" value="<?php echo $test ?>" align="right"> Septiembre 13, 2016 23:06:31 Hora Local </td>
<td> <input type="checkbox" name="FechaLoc2" onclick="CopyFLoc3(this.form)" value="<?php echo $test ?>" align="right"> Noviembre 14 2016 23:06:31 Hora Local </td>
<td> <input type="text" name="FechaLoc3" size="60"> </td>
</tr>
-->
<p>
<input type="submit" value="Submit">
</p>
</form>
关于javascript - JS动态更改表中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40076761/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!