按钮图标

Icon for Button

本文关键字:图标 按钮      更新时间:2023-09-26

我需要关于如何用一些图标(任何)替换后退按钮的示例或一些指导。实际工作在多页应用程序和后退按钮必须替换为任何图标

<script>
  $.getScript(path + "js/Page1.js");
</script>
<p id="currentPage"></p>
<div class="container">
  <label>WRKID</label>
  <input type="text" id="wrkid">
  <br>
  <br>
  <label>WRKNAME</label>
  <input type="text" id="wrkname">
  <br>
  <br>
  <label>REFID</label>
  <input type="text" id="Refid">
  <br>
  <br>
</div>
<input type="submit" class="appButton" value="INSERT" onclick="insert();">
<br>
<br>
<input type="button" id="backButtonPage2" class="appButton" value="BACK" onclick="currentPage.back();" />

currentPage = {};
currentPage.init = function() {
  WL.Logger.debug("Page1 :: init");
};
currentPage.back = function() {
  WL.Logger.debug("Page1 :: back");
  $("#pagePort").load(pagesHistory.pop());
};

currentPage = {};
currentPage.init = function() {
  WL.Logger.debug("Page1 :: init");
};
currentPage.back = function() {
  WL.Logger.debug("Page1 :: back");
  $("#pagePort").load(pagesHistory.pop());
};
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.3.12/d3.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>