为什么代码放到dw里运行没任何效果

来源:7-1 jQuery自定义事件之trigger事件

qq_细雨听荷_0

2017-06-07 11:28

把代码贴到dw里运行,网页上没效果,是哪的问题

写回答 关注

1回答

  • Glunefish
    2017-06-07 18:26:57
    已采纳

    <!DOCTYPE html>

    <html>

    <head>

    <meta charset="UTF-8">

    <title>JQ-test</title>

    <style>

    div { width: 500px; height: 200px; border: 1px solid green; margin: 0 auto; }

    </style>

    </head>

    <body>


    <div id="test">

    <label></label><input type="text">

    <input type="button" value="button1">

    <input type="button" value="button2">

    </div>


    <!-- JS -->


    <script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>

    <script type="text/javascript">


    $('#test input:eq(1)').on('click',function(event,title){

    if(!title){title = 'button1'}


    updata(title)

    })


    $('#test input:eq(2)').click(function(){

    $('#test input:eq(1)').trigger('click','button2')

    })


    function updata(title){

    $('#test label:first').text(title);

    var $text = $('#test input:first');

    if(!$text.val()){ $text.val(0) }

    $text.val(parseInt($text.val())+1)

    }


    </script>

    </body>

    </html>

    用我写的。

    qq_细雨听...

    非常感谢!

    2017-06-08 10:17:43

    共 1 条回复 >

jQuery基础(三)—事件篇

jQuery第三阶段开启事件修炼,掌握对页面进行交互的操作

89997 学习 · 625 问题

查看课程

相似问题