我有一个mysql数据库,其中带引号的引号中带有css引号(这是css代码:
let arr = [
{ClientName: "A", Alex: 2, Da: 0, Cal: 0},
{ClientName: "b", Alex: 0, Da: 0, Cal: 4},
{ClientName: "c", Alex: 1, Da: 0, Cal: 5},
{ClientName: "d", Alex: 2, Da: 0, Cal: 0}
];
let output = arr.reduce((curr, next) => {
return {ClientName: "Total", Alex: (curr.Alex + next.Alex ), Da: (curr.Da + next.Da), Cal: (curr.Cal + next.Cal)};
});
console.log(output);
在输出的php文件中,我正确地看到了引号,但是我不能在剪贴板中复制(并粘贴到文字处理器中)。
有一个解决方案(我尝试使用css“ user-select”,但不起作用),也许可以使用jquery?
谢谢