加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 698 Bytes
一键复制 编辑 原始数据 按行查看 历史
beenlee 提交于 2024-06-12 16:38 . 增加注释
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="jquery.min.js" type="text/javascript"></script>
</head>
<body>
<form action="index.php" method="get" >
<input type="text" name="name" value="" placeholder="">
<input type="submit" name="tijiao" value="tijiao">
inputs
</form>
<div id='title'>
<h2>hello word</h2>
</div>
<script>
$(function(){
$('input[name="tijiao"]').click(function(){
var name = $('input[name="name"]').val();
$.post('index.php', {name: name}, function(data) {
$('#title').html(data.html);
},'json');
});
});
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化