为了账号安全,请及时绑定邮箱和手机立即绑定

无法解决此错误:未关闭的字符串

无法解决此错误:未关闭的字符串

一只甜甜圈 2021-10-14 15:58:57
我无法解决语法错误。未关闭的字符串是我尝试验证它时的错误。function addNewCultureRow($row, $case, $specimen) {    var $uniqueID = "." + $row + $case + "." + $specimen;    var $tableRows = "<tr><td>" + $row + "<td><input id='localLevel" + $uniqueID + '" type="edit">' +                        "<td><input id='colony" + $uniqueID + '" type="edit">' +                        "<td><input id='description" + $uniqueID + '" type="edit">' +                        "<td><input id='oxidase" + $uniqueID + '" type="edit">' +                        "<td><input id='isolation1" + $uniqueID + '" type="edit">' +                        "<td><input id='isolation2" + $uniqueID + '" type="edit">' +                        "<td><input id='bioChemComments" + $uniqueID + '" type="edit">' +                        "<td><input id='IDMALDI" + $uniqueID + '" type="edit">' +                        "<td><input id='sensiID" + $uniqueID + '" type="edit">' +                        "<td><input id='organism-" + $case + "-" + $specimen + "544' type='select'>" +                        "<td><input id='localComments" + $uniqueID + '" type="edit">' +                        "<td><input id='comments-" + $case + "-" + $specimen + "-544-new' type='edit'>" +                        "<td><input id='result-" + $case + "-" + $specimen + "544-new' type='select'>";    return ($tableRows);}
查看完整描述

3 回答

?
MM们

TA贡献1886条经验 获得超2个赞

我认为这是来自这一行

"<td><input id='colony"

您需要关闭内部报价。


查看完整回答
反对 回复 2021-10-14
?
茅侃侃

TA贡献1842条经验 获得超21个赞

Thakur 在他的回答中是正确的,你有 ' 和 " 混淆了几次。如果你想在未来避免这种问题,你可能需要考虑使用模板字符串,例如:


var $tableRows = `<tr><td>${$row}<td><input id='localLevel ${$uniqueID}' type="edit">

                <td><input id='colony ${$uniqueID}' type="edit">

                <td><input id='description ${$uniqueID}' type="edit">

                <td><input id='oxidase ${$uniqueID}' type="edit">

                <td><input id='isolation1 ${$uniqueID}' type="edit">

                <td><input id='isolation2 ${$uniqueID}' type="edit">

                <td><input id='bioChemComments ${$uniqueID}' type="edit">

                <td><input id='IDMALDI ${$uniqueID}' type="edit">

                <td><input id='sensiID ${$uniqueID}' type="edit">

                <td><input id='organism-${$case}-${$specimen}-544' type='select'>

                <td><input id='localComments ${$uniqueID}' type="edit">

                <td><input id='comments-${$case}-${$specimen}-544-new' type='edit'>

                <td><input id='result-${$case}-${$specimen}-544-n' type='edit'>

                `;


查看完整回答
反对 回复 2021-10-14
?
米脂

TA贡献1836条经验 获得超3个赞

将所有 '" 反转为 "' 并且 type="edit" 应该是 type='edit' ,如下所示:


function addNewCultureRow($row, $case, $specimen) {

    var $uniqueID = "." + $row + $case + "." + $specimen;

    var $tableRows = "<tr><td>" + $row + "<td><input id='localLevel" + $uniqueID + "' type='edit'>" +

                        "<td><input id='colony" + $uniqueID + "' type='edit'>" +

                        "<td><input id='description" + $uniqueID + "' type='edit'>" +

                        "<td><input id='oxidase" + $uniqueID + "' type='edit'>" +

                        "<td><input id='isolation1" + $uniqueID + "' type='edit'>" +

                        "<td><input id='isolation2" + $uniqueID + "' type='edit'>" +

                        "<td><input id='bioChemComments" + $uniqueID + "' type='edit'>" +

                        "<td><input id='IDMALDI" + $uniqueID + "' type='edit'>" +

                        "<td><input id='sensiID" + $uniqueID + "' type='edit'>" +

                        "<td><input id='organism-" + $case + "-" + $specimen + "544' type='select'>" +

                        "<td><input id='localComments" + $uniqueID + "' type='edit'>" +

                        "<td><input id='comments-" + $case + "-" + $specimen + "-544-new' type='edit'>" +

                        "<td><input id='result-" + $case + "-" + $specimen + "544-new' type='select'>";

    return ($tableRows);

}


查看完整回答
反对 回复 2021-10-14
  • 3 回答
  • 0 关注
  • 374 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信