gpt4 book ai didi

jquery - 单击查询清除输入字段

转载 作者:行者123 更新时间:2023-12-01 06:55:38 25 4
gpt4 key购买 nike

我在 Jquery http://jsfiddle.net/anderskitson/AtqHm/ 上找到了这个 jsfiddle 代码它在 jsfiddle 上工作正常,但是当我尝试在 html 文件中实现它时,它不起作用。我把它托管在 http://anderskitson.ca/tests/javascript/clearOnHover.html我不知道为什么它不起作用,这是非常基本的设置。任何帮助将不胜感激。

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Rat Recipes</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
</head>
<body>
<div id="form">
<form method="post">
<input type="text" class="class-11" value="Enter Choice #11">
<input type="text" class="class-21" value="Enter Choice #21">​
<input name="submit" type="submit" id="submit" class="submit button" value="Send feedback" />
</form>
<script>
$(document).ready(function() {
var default_val = '';
$('input[class^="class-"]').focus(function() {
if($(this).val() == $(this).data('default_val') || !$(this).data('default_val')) {
$(this).data('default_val', $(this).val());
$(this).val('');
}
});

$('input[class^="class-"]').blur(function() {
if ($(this).val() == '') $(this).val($(this).data('default_val'));
});
});​
</script>
</body>
</html>

最佳答案

在ready()函数的末尾似乎有一些无法识别的字符,这些字符没有出现在上面的代码片段中。当我将代码复制/粘贴到 Notepad++ 中时,我看到一个“?”特点。删除它会使代码正常运行

关于jquery - 单击查询清除输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9368717/

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