没有JQuery。我正在尝试使用javascript创建一个单选按钮,然后是文本。它会在document.writes之后打印出所有内容。我想我的引号有问题,但我无法修复它。有人可以帮我解决这个问题吗?
function printarray (newarray, cnt) {
if (cnt < 2) {
document.getElementById('radio').style.display = 'none';
} else {
for (var i = 0; i < newarray.length; i++) {
var cur_text = newarray[i];
if (i == 0) {
var radio = '<input type="radio" name="bank" value="KeyBank" onclick="showChoice(this)">' + 'KeyBank';
} else {
radio = radio + '<input type="radio" name="bank" value="<script>document.write(cur_text);</script>" onclick="showChoice(this)">' + "<script>document.write(cur_text)</script>;";
}
}
document.getElementById('btn').style.display = 'none';
var foo = document.getElementById('radio').innerHTML = radio;
}
document.getElementById('array').innerHTML = cnt;
}
答案 0 :(得分:1)
第一个问题是,下面的行是错误的,
radio = radio + '<input type="radio" name="bank" value="<script>document.write(cur_text);</script>" onclick="showChoice(this)">' + "<script>document.write(cur_text)</script>;";
更正后的行,
radio = radio + '<input type="radio" name="bank" value="'+cur_text+'" onclick="showChoice(this)">' + cur_text;