Generator kodów kreskowych: Różnice pomiędzy wersjami

Z SYSTEM-KANBAN.PL

mNie podano opisu zmian
mNie podano opisu zmian
Linia 21: Linia 21:
     </style>
     </style>
     <script type="text/javascript">
     <script type="text/javascript">
      function generateBarcodes() {
function generateBarcodes() {
        var inputText = document.getElementById("inputText").value;
  var inputText = document.getElementById("inputText").value;
        var barcodesTable = document.getElementById("barcodesTable");
  var barcodesTable = document.getElementById("barcodesTable");
        barcodesTable.innerHTML = "<table id=\"barcodesTable\"><tr><th>Tekst</th><th>Kod kreskowy</th></tr></table>"; // wyczyść tabelkę
  barcodesTable.innerHTML = "<table id=\"barcodesTable\"><tr><th>Tekst</th><th>Kod kreskowy</th></tr></table>"; // wyczyść tabelkę
        var barcodes = inputText.split("\n");
  var barcodes = inputText.split("\n");
        for (var i = 0; i < barcodes.length; i++) {
  for (var i = 0; i < barcodes.length; i++) {
          var tr = document.createElement("tr");
    if (barcodes[i].trim() !== "") { // dodaj warunek, który ignoruje puste linie
          var textCell = document.createElement("td");
      var tr = document.createElement("tr");
          textCell.appendChild(document.createTextNode(barcodes[i]));
      var textCell = document.createElement("td");
          var barcodeCell = document.createElement("td");
      textCell.appendChild(document.createTextNode(barcodes[i]));
          barcodeCell.appendChild(createBarcodeImage(barcodes[i]));
      var barcodeCell = document.createElement("td");
          tr.appendChild(textCell);
      barcodeCell.classList.add("code");
          tr.appendChild(barcodeCell);
      barcodeCell.appendChild(createBarcodeImage(barcodes[i]));
          barcodesTable.appendChild(tr);
      tr.appendChild(textCell);
        }
      tr.appendChild(barcodeCell);
      }
      barcodesTable.appendChild(tr);
 
    }
  }
}
       function createBarcodeImage(text) {
       function createBarcodeImage(text) {
         var canvas = document.createElement("canvas");
         var canvas = document.createElement("canvas");

Wersja z 08:17, 14 lut 2023

Wpisz tekst, a następnie naciśnij przycisk "Generuj kody kreskowe". Każda linia z pola tekstowego będzie zamieniona na osobny kod kreskowy.




Tekst Kod kreskowy

REKLAMA
Ciasteczka cookie pomagają nam usprawniać nasze usługi. Korzystając z witryny, zgadzasz się na wykorzystywanie ciasteczek.