在JQuery中添加文本到复选框控件

前端之家收集整理的这篇文章主要介绍了在JQuery中添加文本到复选框控件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个复选框我试图在 JQuery中创建
<input type="checkBox" id="someID">Hello World</input>

我以为这是等效的JQuery代码

var $ctrl = $('<input/>').attr({ type: 'checkBox',id: 'someID',text: 'Hello World'})

但是,当我将$ctrl添加到此div标签时,似乎不包括“Hello World”文本.

$("#renderedControl").append($ctrl);

任何想法我失踪了?

解决方法

尝试这个
var $ctrl =  $(document.createElement("input")).attr({
                     id:    'topicFilter-',name:  'test',value: 'test',text :'my testing',type:  'checkBox',checked:true
            })

var lbl =  '<label>Hello world</label>';


 $("#renderedControl").append($ctrl.after(lbl));

唤醒它的帮助

原文链接:https://www.f2er.com/jquery/175850.html

猜你在找的jQuery相关文章