这段代码有什么问题?

发布于 2024-08-29 23:28:12 字数 814 浏览 2 评论 0原文

我收到的编译错误是“常量中的换行符”
错误发生在四个星号所在的位置 (****)。
我无法调试,因为解决方案无法成功构建。

<script type="text/javascript">
function TNClicked(fullImgURL, TNID) {
    document.getElementById("<%= this.imgFull.ClientID %>").src = fullImgURL;

    var pnlFullImage = document.getElementById("<%= this.pnlFullImage.ClientID %>");
    if (pnlFullImage.style.visibility != "visible")
        pnlFullImage.style.visibility = "visible";

    document.getElementById("<%= this.tcImage.ClientID %>").innerHTML = TNID;
    //document.forms[0].ctl00$ctl00$ctl00$cntBody$hfImage.value = TNID;
    //****document.getElementById("<%= this.hfImage").setAttribute("value", TNID);
    //document.getElementById("<%= this.hfImage.ClientID %>").value = TNID;
}
</script>

The compile error I'm getting is "newline in constant"
The error occurs where the four asterisks are (****).
I can't debug, because the solution won't build successfully.

<script type="text/javascript">
function TNClicked(fullImgURL, TNID) {
    document.getElementById("<%= this.imgFull.ClientID %>").src = fullImgURL;

    var pnlFullImage = document.getElementById("<%= this.pnlFullImage.ClientID %>");
    if (pnlFullImage.style.visibility != "visible")
        pnlFullImage.style.visibility = "visible";

    document.getElementById("<%= this.tcImage.ClientID %>").innerHTML = TNID;
    //document.forms[0].ctl00$ctl00$ctl00$cntBody$hfImage.value = TNID;
    //****document.getElementById("<%= this.hfImage").setAttribute("value", TNID);
    //document.getElementById("<%= this.hfImage.ClientID %>").value = TNID;
}
</script>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三生路 2024-09-05 23:28:12

尝试使用注释掉您的评论

<%--


--%>

并关闭此

("<%= this.hfImage%>")

Try commenting out your comments using

<%--


--%>

and close this

("<%= this.hfImage%>")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文