简体   繁体   中英

Populate data from one html file to another

I have two html pages named order.html,check.html and test.js(included in both html files) When i click on submit button in order.html,amount field value from order.html should get updated/populate into cost field of check.html. Below is the code i am using but its not working,can someone let me know whats wrong??

order.html

<html>
<head>
   <script language="javascript" type="text/javascript" src="test.js"></script>
</head>

<body>

<form name="order" action="check.html" method="get">
name:<input type ="text" id="amount" name="amount">
<input type="submit" value="finish" onclick="cost()" >
</form>

</body>
</html>

check.html

 <head>
       <script language="javascript" type="text/javascript" src="test.js"></script>
    </head>

    <body>

    <form name="check" action="confirm.html" method="get">
    <input type="text" name="cost" id="cost" readonly="readonly">
    </form>

    </body>
    </html>

test.js

function cost(){
var amount= $("#amount").val();
jQuery.load("check.html",function(){
$("#cost").html(amount);
});
}

Try this:

order.html:

<html>
<head>
<script language="javascript" type="text/javascript" src="test.js"></script>
</head>

<body>
    <div id="main_div">
        <form name="order" action="check.html" method="get">
            name:<input type="text" id="amount" name="amount"> <input
                type="button" value="finish" id="submit_btn">
        </form>
    </div>
</body>
</html>

Jquery:

$(document).ready(function() {
    $('#submit_btn').click(function() {
        var amount = $("#amount").val();
        $('#main_div').load("check.html", function() {
            $('#main_div').find("#cost").val(amount);
        });
    });
});

您的order.html输入类型Submit应该是输入类型按钮。

Change your test.js to

function cost(){
  var amount= $("#amount").val();
  $('body').load("check.html",function(){
    $("#cost").val(amount);
  });
}

And input type="button"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM