将html内容附加到div标签时出现jquery错误

时间:2012-06-17 09:59:31

标签: javascript jquery

以下是我的代码:

<div id="removequestions"></div>

var html += '<input type=radio name=questions />';
$.('#removequestions').append(html);

我在执行上述代码时遇到的javascript错误是:

XML filter is applied to non-XML value (function (a, b) {return new c.fn.init(a, b);})

知道发生此错误的原因。我想动态添加单选按钮。

1 个答案:

答案 0 :(得分:1)

代表这种方式: -

var html = "";

html += '<input type=radio name=questions />';
$('#removequestions').append(html);​

编辑:

另一种表达方式: -

var ques = $('#removequestions');
$('<input>').attr({
    'type': 'radio',
    'name': 'questions'
}).appendTo(ques);

<强> LIVE DEMO