如何创建运行时元素?在哪里我做错了帮助....帮助

时间:2010-03-29 09:26:19

标签: javascript prototypejs javascript-framework

new Ajax.Request('Handler.ashx',
            {
                method: 'get',
                onSuccess: function(transport)
                {
                    var response = transport.responseText || "no response text";
                    //alert("Success! \n\n" + response);
                    var obj = response.evalJSON(true);
                    alert(obj[0].Nam);
                    alert(obj[0].IM);
                    for(i = 0; i < 4; i++)
                    {
                        $('MyDiv').insert(   new Element('checkbox', { 'id': "Img" + obj[i].Nam, 'value': obj[i].IM }) );
                        return ($('MyDiv').innerHTML);
                    }


                },
                onFailure: function() { alert('Something went wrong...') }
            });

1 个答案:

答案 0 :(得分:0)

checkbox无效的标记名称。您是否尝试创建<input type="checkbox" />

new Element('input', { type: 'checkbox', ... })

此外,在onSuccess回调函数中调用return是没有意义的。