当前位置:   article > 正文

jquery中val获取值,attr获取属性值和attr设置属性值_$('#test1').attr(

$('#test1').attr(

(1)这里可以看到只能获取到input的值,但不能获取button的值。

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="/jquery/jquery-1.11.1.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("#btn1").click(function(){
  8. alert("Value: " + $("#test").val());
  9. });
  10. $("#btn2").click(function(){
  11. alert("Value: " + $("#btnValue").val());
  12. });
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <p>姓名:<input type="text" id="test" value="coding"></p>
  18. <button id="btnValue">获取此button的值</button></br></br>
  19. <button id="btn1">显示值1</button>
  20. <button id="btn2">显示值2</button>
  21. </body>
  22. </html>




(2)可以看到这里获取了input的属性value的值coding,也获取到了button的属性id的值为btnValue。

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="/jquery/jquery-1.11.1.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("#btn1").click(function(){
  8. alert("Value: " + $("#test").attr("value"));
  9. });
  10. $("#btn2").click(function(){
  11. alert("Value: " + $("#btnValue").attr("id"));
  12. });
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <p>姓名:<input type="text" id="test" value="coding"></p>
  18. <button id="btnValue">获取此button的值</button></br></br>
  19. <button id="btn1">显示值1</button>
  20. <button id="btn2">显示值2</button>
  21. </body>
  22. </html>



(3)attr设置属性值:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="/jquery/jquery-1.11.1.min.js"></script>
  5. <script>
  6. window.flag =true;
  7. $(document).ready(function(){
  8. $("#btn1").click(function(){
  9. $("#test1").attr("id", "number");
  10. });
  11. $("#btn2").click(function(){
  12. if (window.flag) {
  13. alert("value:" + $("#test1").text());
  14. } else {
  15. alert("value:" + $("#number").text());
  16. }
  17. window.flag = !window.flag;
  18. });
  19. });
  20. </script>
  21. </head>
  22. <body>
  23. <p id="test1">这是<b>粗体</b>文本。</p>
  24. <button id="btn1">设置属性id</button>
  25. <button id="btn2">获取属性为id的值</button>
  26. </body>
  27. </html>


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/110695
推荐阅读
相关标签
  

闽ICP备14008679号