Rumah >hujung hadapan web >tutorial js >通过jQuery编码转换、事件响应、页面跳转实现浏览器跳转并传递参数

通过jQuery编码转换、事件响应、页面跳转实现浏览器跳转并传递参数

php中世界最好的语言
php中世界最好的语言asal
2018-05-03 10:15:491623semak imbas

这次给大家带来通过jQuery编码转换、事件响应、页面跳转实现浏览器跳转并传递参数,通过jQuery编码转换、事件响应、页面跳转实现浏览器跳转并传递参数的注意事项有哪些,下面就是实战案例,一起来看一下。

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title></title>
  <script src="https://cdn.bootcss.com/jquery/2.2.2/jquery.slim.js"></script>
</head>
<body>
<input type="text" class="keyword"/>
<button id="searchBtn">点击</button>
<script type="text/javascript">
  $("#searchBtn").click(function() {
    var searchText = jQuery.trim($(".keyword").val());
    var searchUrl = encodeURI("two.html?searchText=" + searchText); //使用encodeURI编码
    location.href = searchUrl;
  })
</script>
</body>
</html>

two.html

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title></title>
  <script src="https://cdn.bootcss.com/jquery/2.2.2/jquery.slim.js"></script>
</head>
<body>
<input type="text" class="keyword1"/>
<script type="text/javascript">
  //获取 上一个搜索页面传来的参数 
  var searchUrl = window.location.href;
  var searchData = searchUrl.split("="); //截取 url中的“=”,获得“=”后面的参数
  var searchText = decodeURI(searchData[1]); //decodeURI解码
  $(".keyword1").val(searchText);
</script>
</body>
</html>

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

推荐阅读:

js获取ModelAndView后如何使用

vue中v-if与v-show使用方法与区别

jQuery实现输入文字超过规定行数时自动添加省略号

Atas ialah kandungan terperinci 通过jQuery编码转换、事件响应、页面跳转实现浏览器跳转并传递参数. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn