我正在创建一个 Javascript 类
课是这个
(function(window){
function Person(id,name,position,imageUrl){
this.id = id;
this.name = name;
this.position = position;
this.imageUrl = imageUrl;
}
Person.prototype.getPersonDiv = function(){
var persondiv;
}
}(window));
我正在使用这个类来动态创建一个 div。div的基本结构会是这样的
<div id = "employee1" class = 'person-profile'>
<div class = 'avatar'>
<img src = ""/>
</div>
<div class = 'employee-details'>
<p>this.id <br/> this.name <br/> this.position<p>
</div>
</div>
div idemployee1 将通过连接字符串“employee”和id(类的属性)来创建。同样,img url 应该来自 imageUrl(类的属性)。同样,所有员工的详细信息。
我打算将它写为内部 HTML 或附加。我似乎无法使字符串正确。
该字符串将写入 getPersonDiv 函数中的 persondiv 变量,并在我调用该函数时返回。