给出示例:
<html><head>
<meta http-equiv="content-type" content="text/htmlcharset=GBK">
<script type="text/javascript">
function clearVal() {
var el = document.getElementById('num')
if (el) {
// 将文本框对象值清空
el.value = ''
}
}
</script>
</head>
<body>
<form action="Untitled-3.html" name="form" method="post">
<div>Tem<br><input type="text" name="num" id="num" value='7' /></div>
<div>
<input type="button" value="按钮" onclick="clearVal()"/>
</div>
</form>
</body>
</html>
在标签上再加一个加密过的key,生成html时候生成,修改时候和参数一起提交,在后台程序中做验证,如果不是对应cardId就可以失败,加密方法有md5 Sha1这种得都可以,签名!有问题私信我欢迎分享,转载请注明来源:内存溢出
评论列表(0条)