html代码:
<div id="scks" is="select-checkbox" url="data.json" displayName="name" displayValue="value">
</div>
js代码:
// i want to set html to div(#scks)
// it dose not work
// this is the div(#scks)
select_checkbox_proto.createdCallback = function(){
that.setValue("afterEnd");
}
select_checkbox_proto.setValue = function(val){
this.innerHTML = val;
}
document.registerElement("select-checkbox",{prototype:select_checkbox_proto,extends: 'div'});
任何人都可以帮助我?
1:这是当前的div(#scks)? 2:如何将值设置为div。
答案 0 :(得分:0)
你的问题对我来说并不清楚。如果你想将自定义html放入div中,你可以使用。
$("#scks").html("your custom html");
如果您想更改某个元素的属性,可以使用attr()或prop()
$("#scks").prop('NewAttr', 'NewValue');