繁体   English   中英

如何获取javascript以获取打开另一个html页面的按钮?

[英]How do I get javascript to get a button to open another html page?

     First I must apologize Halnex for calling you Helix this whole time. I attempted to try your code but I am not getting my submit page to show up and I’m not completely sure why. Note I just copied the source code of JQuery to a file inside of one of my folders inside the folder holding these html pages.

<!DOCTYPE HTML>
<html>
    <HEAD>
        <title>WELCOME TO MY FORM PAGE</title>
<link rel="stylesheet type="text/css" href="style/style.css"> 
            <script src="jquery-1.12.4.min.js"></script>
            <script type="text/javascript">
                $(document).ready(function (){

                $('#button1').click(function (){

                    $('#response').load('form_submit.html');    
                    });
                });
            </script>
    </HEAD>
<BODY>

只是两个文本框,没什么特别的。

报名

用户名:
密码:
我不确定这两行是否正确。 输入行是否应该包装div或类似的东西?

 Maybe my issue is with my code on my file I'm trying to load (form_submit.html)? This is all I have on my form_submit.html file: Does this code below for the submission page look acceptable or could this be where I am failing? <!DOCTYPE HTML> <html> <head> <title>User Submission Page</title> </head> <body> Here are the details of the submitted form: </body> </html> 

如前所述,您的按钮正在尝试提交表单。 要加载按钮上的html页面,请使用它。

<input type="button" id="button1" value="Load HTML Page">

<div id="response"></div>

jQuery的

$(document).ready(function() {
    $('#button1').click(function() {
        $('#response').load('test.html');
    });
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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