我想在上面显示的空文本框和空字段中显示已单击的内容。我已经使用如下警告消息成功地向他们展示了:
function Chosen() {
var message = ""
if (document.getElementById('cbconditioning').checked == true) {
message += " (AC)"}
alert("You have selected: " + message + document.getElementById("cbotherstext").value);
在我请求的代码中,我希望在两个空字段中显示相同的确切结果。
字段及其类型是:
<input id="cbconditioning" type="checkbox"/>a. Air Conditioning</td>
<td class="auto-style63" rowspan="3" type="text" id="emptyspace1a" onclick="Chosen()" >
</td>
<input id="emptytext1" type="text"/></td>
<input id="cbotherstext" type="text" disabled="disabled" /></td>
<input type="button" id="chosenlaunch" onclick="Chosen()" value="Equipments Purchased"/>
我想确保这些字段包含在上面的函数中。