我对这一行有一点大脑放屁:
jQuery("#image-div").html("<img src='get.php?id_no='" + id + ">");
我正在尝试将<img>
标记与变量id
连接起来,但我似乎无法正确获取引号。我知道,这是一个愚蠢的错误,但它只是在逃避我。我能得到一点帮助吗?
答案 0 :(得分:3)
看起来你错了撇号。
jQuery("#image-div").html("<img src='get.php?id_no=" + id + "'>");
答案 1 :(得分:1)
您的代码中有错误的单引号。
jQuery("#image-div").html("<img src='get.php?id_no='" + id + ">");
// ^ This one here
应该是
jQuery("#image-div").html("<img src='get.php?id_no=" + id + "'>");
// ^ Should be here
答案 2 :(得分:1)
我真的不想像你应该严格的那样创建DOM元素:
jQuery("#image-div").appendTo(
$("<img/>")
.attr("src", "get.php?id_no" + id)
.attr("alt", "someThing") )
我知道打字更多但现在更有意义。