html提交数据如何加密 html加密如何实现

主机教程 建站分享 2年前 (2022-12-20) 184次浏览

文章摘要:html提交数据如何加密 html加密如何实现

在html中使用MD5对提交数据进行加密 html代码如下: <form id='te […]

在html中使用MD5对提交数据进行加密

html代码如下:

<form id='test_form' action='' method='' omsubmit='return checkForm()'>

    <input type='text' name='username' value=''/>

    <input type='password'  id='input_pwd' value =''/>

    <input type='hidden' name='pwd' id='md5_pwd' value=''/>

    <button type='submit'>提交</button>

</form>

 

<script>

function checkForm(){

    var input_pwd= document.getElementById('input_pwd');

    var md5_pwd= document.getElementById('md5_pwd');

     md5_pwd.value= toMD5(input_pwd.value);           

    //进行下一步

    return ture;

}

</script>


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:html提交数据如何加密 html加密如何实现
文章链接:http://www.7966.org/post/14831.html
转载请注明出处

喜欢 (0)