js对象构造与imgage原型

时间:2017-03-14 11:25:45

标签: javascript

我正在尝试将图像作为对象的原型之一。

我在这里缺少什么?

这是我的代码:

function test(prot1, prot2) {
  this.par1 = prot1;
  this.par2 = prot2;
}
var test1 = new test("text", "image.jpg");
document.getElementById("testdiv").innerHTML = "<img src='test1.par2' alt='test1.par1' class='image' />";

2 个答案:

答案 0 :(得分:0)

在javascript中,您不能简单地在字符串中键入变量并期望对它们进行求值。这不起作用。

您需要连接它们才能被视为变量而不仅仅是字符串的一部分:

np.einsum

或者如果您的环境支持ES6,您可以使用字符串文字:

[Route("api/admin/verifyuseremail")]

关于后者的更多信息:https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Template_literals

答案 1 :(得分:0)

您只使用了字符串,但您需要评估该对象。

使用 ES6 ,您可以使用template literals

__new__

使用较低版本,您可以使用字符串连接

__init__