gpt4 book ai didi

javascript - jquery 事件不是持久的

转载 作者:行者123 更新时间:2023-12-02 15:49:19 26 4
gpt4 key购买 nike

在下面的代码中,我看到我的 jquery 替换了“click me away”文本以进行测试,但它很快将其恢复为原始文本。有人可以告诉我问题是什么吗?如有任何帮助,我们将不胜感激。

 <!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#but").click(function(){
$("p").text("testing");
});
});
</script>
</head>
<body>
<div class="container">
<h2>Vertical (basic) form</h2>
<form role="form">
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" id="email" placeholder="Enter email">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="pwd" placeholder="Enter password">
</div>
<div class="checkbox">
<label><input type="checkbox"> Remember me</label>
</div>
<button id="but" type="submit" class="btn btn-default">Submit</button>

</form>
</div>
<p>Click me away!</p>
</body>
</html>

最佳答案

你的意思是恢复如果您刷新页面,此文本将恢复为原始文本。如果您不想提交页面,可以设置return false请检查我的 fiddle 代码(http://jsfiddle.net/tommoholmes/cea6dz35/)

关于javascript - jquery 事件不是持久的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31953874/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com