我正在尝试将图像作为对象的原型之一。
我在这里缺少什么?
这是我的代码:
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' />";
答案 0 :(得分:0)
在javascript中,您不能简单地在字符串中键入变量并期望对它们进行求值。这不起作用。
您需要连接它们才能被视为变量而不仅仅是字符串的一部分:
np.einsum
或者如果您的环境支持ES6,您可以使用字符串文字:
[Route("api/admin/verifyuseremail")]
关于后者的更多信息:https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Template_literals
答案 1 :(得分:0)