2
我是JavaScript新手,我非常感謝您的幫助。 我正在編寫使用JavaScript,Html,Css的Hang子手。 我能夠隨機創建Word並根據長度創建佔位符。但是當我點擊字母時,我想運行檢查單詞是否包含該字母的功能,如果是,則會將該字母放在相應的佔位符中。 這是我如何生成可用的字母。 單擊後無法運行檢查功能在Html中調用JavaScript函數
這是鏈接到jsfiddle, 請指教!
document.write('<div class="letters">');
document.write('<table>');
document.write('<tr>');
document.write('<td>');
var alpha= new alphabetArray();
function alphabetArray() {
this[0] = "A";
this[1] = "B";
this[2] = "C";
this[3] = "D";
this[4] = "E";
this[5] = "F";
this[6] = "G";
this[7] = "H";
this[8] = "I";
this[9] = "J";
this[10] = "K";
this[11] = "L";
this[12] = "M";
this[13] = "N";
this[14] = "O";
this[15] = "P";
this[16] = "Q";
this[17] = "R";
this[18] = "S";
this[19] = "T";
this[20] = "U";
this[21] = "V";
this[22] = "W";
this[23] = "X";
this[24] = "Y";
this[25] = "Z";
}
var err=0;
for (i=0; i<26; i++)
//document.write('<a href="#" onClick="check('+alpha[i]+')";/>'+alpha[i]+ " " +'</a>');
//document.write('<input type="submit" ;onClick=check('+this.alpha[i]+'); value='+alpha[i]+'>');
document.write('<input type=\"submit\" onClick=\"javascript:check('+alpha[i]+')\" value='+alpha[i]+'>');
document.write('</td>');
document.write('</tr>');
var words=['acres','adult','brick','calm','canal','claws','coach','constantly','contrast','cookies','customs'];
function chooseWords(){
var ranWord=words[Math.floor(Math.random() * words.length)];
return ranWord;
}
function fillBlanks(word){
var res=" ";
for(j=0;j<word.length;j++){
res= "_ " + res;
}
return res;
}
document.write('<tr>');
document.write('<td>');
var answer=chooseWords();
document.write(answer);
var output=fillBlanks(answer);
var res1=output.split(" ");
document.write('<div id=1><font size=15 ><b>'+output +'</b></font></div>');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
document.write('</div>');
document.write('<div class="hangArea">');
document.write('<div class="top">'); document.write('</div>');
document.write('<div class="left">');document.write('</div>');
document.write('<div class="base">');document.write('</div>');
document.write('</div>');
document.write('<div class="drawarea">');
document.write('<div class="rope">');document.write('</div>');
document.write('<div class="head">');document.write('</div>');
document.write('<div class="body>');document.write('</div>');
document.write('<div class="leftarm">');document.write('</div>');
document.write('<div class="rightarm">');document.write('</div>');
document.write('<div class="leftleg">');document.write('</div>');
document.write('<div class="rightleg>');document.write('</div>');
document.write('</div>');
f
function check(alpha){
for(i=0;i<answer.length;i++){
document.write(alpha);
if(answer.charAt(i)===alpha.toLowerCase()){
res1[i]=alpha;
document.write(res1[i]);
document.getElementById('1').innerHTML=res1[i];
}
}
}
請指導!
這樣,你能告訴我們是什麼問題?或者可能發佈一些代碼.. – Shahe
更好地把你的代碼放在jsfiddle.net上,並描述你想要得到什麼以及你真正得到什麼 – Godinall
什麼是answer.length這裏4rm你在哪裏得到答案 –