关于使用JavaScript将二维码生成的值输入到输入字段中的问题

Problems on the generated value of the qr code into a input field using JavaScript

JavaScript 代码和 HTML 代码

我正在尝试将二维码的生成值作为要保存在我的 SQLite 数据库中的输入文本,但无法输入二维码的该死值

var resultDiv;

document.addEventListener("deviceready", init, false);

function init() {
    document.querySelector("#startScan").
        addEventListener("touchend", startScan, false);
 
 resultDiv = document.querySelector("#results");//works in <p id="results"></p>
 
 resultDiv = document.querySelector('#text4');//wont work at all <input id="text4" type="text" placeholder="Book Info"/>
 
}

function startScan() {

 cordova.plugins.barcodeScanner.scan(
        
        function (result) {
   var s = result.text.split('|');
            result.format;
   result.cancelled;

   resultDiv.innerHTML = s;
        }, 
        

  function (error) {
   alert("Scanning failed: " + error);
  }
 );
 

}

JavaScript codes and HTML codes
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>qrBorrowers</title>
    <link rel="stylesheet" href="css/style.css">
</head>

<body>
    <script type="text/javascript" src="cordova.js"></script>

    <nav>
        <div class="topnav">
            <a href="add.html">Add</a>
            <a href="borrow.html">Borrow</a>
            <a href="return.html">Return</a>
            <a href="generate.html">QR code</a>
        </div>
    </nav>

    <Label>
        <h1> &nbsp; Borrow a Book </h1>
    </Label>

    <div class="borrow">


        <input id="text1" type="text" placeholder="Borrower Number" onfocus="this.value=''"/>

        <input id="text2" type="text" placeholder="Borrower Last Name" onfocus="this.value=''" />

        <input id="text3" type="text" placeholder="Borrower First Name" onfocus="this.value=''" />

        <input id="text4" type="text" placeholder="Book Info"/>

        <input id="text6" type="date" placeholder="Date Borrowed" />

        <br>

    </div>

    <div class="borrow">
        
        <p id="results"></p>

        <button id="startScan">Start Scan</button>

        <button id="savedb">Save </button>

    </div>

    <script type="text/javascript" src="js/scanQR.js"></script>

</body>

</html>

要保存输入框中的值不应使用"resultDiv.innerHTML = s;" 相反,您应该使用 "resultDiv.value = s" 它将您的代码保存到输入框,您可以使用它来保存在 SQLite 数据库中。

使用内部 HTML 它不会将您生成的 QR 码保存到输入框。您需要将 innerHTML 更改为 value 以将值保存在输入框中,以便您可以在表单提交时使用它作为值保存在数据库中。

var resultDiv;

document.addEventListener("deviceready", init, false);

function init() {
    document.querySelector("#startScan").
        addEventListener("touchend", startScan, false);
 
 resultDiv = document.querySelector("#results");//works in <p id="results"></p>
 
 resultDiv = document.querySelector('#text4');//wont work at all <input id="text4" type="text" placeholder="Book Info"/>
 
}

function startScan() {

 cordova.plugins.barcodeScanner.scan(
        
        function (result) {
   var s = result.text.split('|');
            result.format;
   result.cancelled;

   resultDiv.value = s;
        }, 
        

  function (error) {
   alert("Scanning failed: " + error);
  }
 );
 

}

JavaScript codes and HTML codes
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>qrBorrowers</title>
    <link rel="stylesheet" href="css/style.css">
</head>

<body>
    <script type="text/javascript" src="cordova.js"></script>

    <nav>
        <div class="topnav">
            <a href="add.html">Add</a>
            <a href="borrow.html">Borrow</a>
            <a href="return.html">Return</a>
            <a href="generate.html">QR code</a>
        </div>
    </nav>

    <Label>
        <h1> &nbsp; Borrow a Book </h1>
    </Label>

    <div class="borrow">


        <input id="text1" type="text" placeholder="Borrower Number" onfocus="this.value=''"/>

        <input id="text2" type="text" placeholder="Borrower Last Name" onfocus="this.value=''" />

        <input id="text3" type="text" placeholder="Borrower First Name" onfocus="this.value=''" />

        <input id="text4" type="text" placeholder="Book Info"/>

        <input id="text6" type="date" placeholder="Date Borrowed" />

        <br>

    </div>

    <div class="borrow">
        
        <p id="results"></p>

        <button id="startScan">Start Scan</button>

        <button id="savedb">Save </button>

    </div>

    <script type="text/javascript" src="js/scanQR.js"></script>

</body>

</html>