gpt4 book ai didi

javascript - 当 URL 中存在查询字符串时,Jquery 表单提交不起作用

转载 作者:行者123 更新时间:2023-12-03 08:24:32 25 4
gpt4 key购买 nike

测试场景:

  1. 在文本框中输入“hello”,您应该会在页面中看到“hello”
  2. 现在点击“测试”链接(它只是一个带有查询字符串 &test=1 的链接)
  3. 现在在文本框中输入“world”,您可以看到它不再被写入页面中。

为什么会发生这种情况?

您可以在 .php 页面上测试此页面:

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>

<form id="search_form" method="post">
<label for="search">Search:</label>
<input type="search" id="search" />
</form>

<script type="text/javascript">

$('#search_form').submit(function (event) {
window.location.href = '<?=$_SERVER['PHP_SELF'].'?s='?>' + $('#search').val();
event.preventDefault();
});

</script>

<br /><br />

<?php $s = filter_input(INPUT_GET, 's'); ?>

Query string: <?=$s?>

<br /><br />

<a href="<?=$_SERVER['PHP_SELF']?>?s=<?=$s?>&test=1">test</a>

</body>
</html>

演示网址:(问题解决后删除)

最佳答案

由于您使用的是 Jquery Mobile,因此默认情况下所有链接都通过 AJAX 执行。这会让你的这个脚本感到困惑。我建议在链接中禁止此内容。

<a href="<?=$_SERVER['PHP_SELF']?>?s=<?=$s?>&test=1" data-ajax="false">test</a>

这将允许像平常一样对待链接,并且将在没有 AJAX 的情况下执行 URL。

关于javascript - 当 URL 中存在查询字符串时,Jquery 表单提交不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33615166/

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