- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在函数clueClicked中,我试图从数组中提取值并更改表的innerHTML,这在某种程度上不起作用。控制台上没有错误。请帮忙。我正在使用<td>
的id ,更改元素的内容。
<!DOCTYPE html>
<html>
<head>
<title>Cross word Puzzel</title>
<style>
#puzzel {
width:330px;
margin: 0;
padding: 0;
border-collapse: collapse;
border: 1px solid black;
}
#cross{
text-align: center;
width:30px;
height:30px;
margin: 0;
padding: 0;
border-collapse: collapse;
border: 1px solid white;
}
#buttons{
width:30%;
float: right;
}
tr{
margin: 0;
padding: 0;
border-collapse: collapse;
}
#leftBox{
float: left;
}
#rightBox{
float: left;
}
.butt{
height:50px;
width: 100px;
}
#puzzel{
text-align: center;
}
.tableBox{
width: 30px;
height:30px;
border: 1px solid black;
text-align: center;
}
</style>
<script>
var currentTextInput;
var puzzelArrayData;
function initializeScreen(){
var puzzelTable = document.getElementById("puzzel");
puzzelArrayData = preparePuzzelArray();
for ( var i = 0; i < puzzelArrayData.length ; i++ ) {
var row = puzzelTable.insertRow(-1);
var rowData = puzzelArrayData[i];
for(var j = 0 ; j < rowData.length ; j++){
var cell = row.insertCell(-1);
if(rowData[j] != 0){
var txtID = String('txt' + '_' + i + '_' + j);
cell.innerHTML = '<input type="text" class="tableBox" maxlength="1" style="text-transform: lowercase" ' + 'id="' + txtID + '" onfocus="textInputFocus(' + "'" + txtID + "'"+ ')">';
}else{
cell.innerHTML = "1";
cell.style.backgroundColor = "black";
}
}
}
}
function textInputFocus(txtID123){
currentTextInput = txtID123;
}
function preparePuzzelArray(){
var items = [ [0, 0, 0, 0, 'p', 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 'u', 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 'n', 0, 'b', 0, 0, 0, 0],
[0, 'h', 'y', 'd', 'e', 'r', 'a', 'b', 'a', 'd', 0],
[0, 0, 0, 0, 0, 0, 'n', 0, 0, 'e', 0],
[0, 0, 0, 0, 0, 0, 'g', 0, 0, 'l', 0],
[0, 0, 'm', 'u', 'm', 'b', 'a', 'i', 0, 'h', 0],
[0, 0, 0, 0, 0, 0, 'l', 0, 0, 'i', 0],
[0, 0, 0, 0, 0, 0, 'o', 0, 0, 0, 0],
['k', 'a', 's', 'h', 'm', 'i','r', 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 'e', 0, 0, 0, 0]
];
return items;
}
function solveClicked(){
var testString = 'txt_12_15';
var tokens = testString.split('_');
alert(tokens);
}
function clearAllClicked(){
currentTextInput = '';
var puzzelTable = document.getElementById("puzzel");
puzzelTable.innerHTML = '';
initializeScreen();
}
function checkClicked(){
for ( var i = 0; i < puzzelArrayData.length ; i++ ) {
var rowData = puzzelArrayData[i];
for(var j = 0 ; j < rowData.length ; j++){
if(rowData[j] != 0){
var providedValue = document.getElementById('txt' + '_' + i + '_' + j).value;
if(providedValue != puzzelArrayData[i][j]){
console.log('Wrong entry found: ' + providedValue + " at " + i + j);
}
}
}
}
}
function clueClicked(){
var temp1 = currentTextInput;
var token = temp1.split("_");
var row = token[1];
var column = token[2];
document.getElementById(temp1).innerHTML = puzzelArrayData[row][column];//here is the problem.
}
</script>
</head>
<body onload="initializeScreen()">
<div id="leftBox">
<table id="puzzel">
</table>
</div>
<div id="rightBox">
<table>
<tr><td><input class="butt" type="submit" value="Clear All" onclick="clearAllClicked()"></td></tr>
<tr><td><input class="butt" type="submit" value="Check" onclick="checkClicked()"></td></tr>
<tr><td><input class="butt" type="submit" value="Solve" onclick="solveClicked()"></td></tr>
<tr><td><input class="butt" type="submit" value="Clue" onclick="clueClicked()"></td></tr>
</table>
</body>
</html>
最佳答案
这可能是因为您尝试在输入元素上使用innerHTML。您应该尝试使用 value 属性。 innerHTML 通常用于包含某些内容的元素,即 div、span 等...
关于javascript - document.getElementById().innerHTML 不起作用,控制台上没有错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32814135/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!