$(document).ready(function() {    
      $("a").click(function() {
          $("#decimal").val('这是一个例子');
          $("#inputtext").val('控制text');
});
  /*
      $("a").click(function() {
          alert("Hello world!");
      });
  */
      
});
  function convertToDecimal(){
     $.ajax({
          type: "GET",
          url: "/jqueryjsp/response",
          data: "key=" + $("#key").val(),
          dataType: "html",
          success: function(x...[ 查看全文 ]