将html链接到另一个html文件

时间:2015-06-18 02:04:05

标签: html

我有2个HTML文件,index.html有1个按钮,process.html有函数Login()脚本...当我按下按钮时,它重定向到process.html并处理函数Login()自动......我该怎么办?使用href还是什么?

的index.html

<div class="login">
        <div class="fb"><img src="facebook.JPG" style="cursor:pointer;" height="50px" width="250px"/><br></div>
</div>

process.html

<html>
function Login()
{
//code that process login
}
</html>

1 个答案:

答案 0 :(得分:2)

在index.html中你放了onclick =&#34; location.href =&#39; process.html&#39;&#34; at&#39; img&#39;标记:

<div class="login">
    <div class="fb">
     <img onclick="location.href='process.html'" src="facebook.JPG" style="cursor:pointer;" height="50px" width="250px"/><br>
    </div>
</div>

在process.html中,您输入了&#39; login();&#39;登录代码末尾的函数,您可以使用jquery document.ready函数或body onload。:

<html>
<script>
function Login()
{
//code that process login
}
Login();
</script>
</html>