转义符输入的转换
Posted chengyunshen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了转义符输入的转换相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<input type="text" id="input">
<input type="text" id="b">
<button onclick="trans()">转换</button>
<script>
function trans(){
var a = document.querySelector(‘#input‘)
var b = document.querySelector(‘#b‘)
const obj = {
value :a.value,
value2:b.value
}
console.log(JSON.stringify(obj).replace(/\\/ig,"u005c"),"stringify")
}
</script>
</body>
</html>
以上是关于转义符输入的转换的主要内容,如果未能解决你的问题,请参考以下文章