开发者

Jquery functions more than once on the same page

开发者 https://www.devze.com 2023-04-12 03:51 出处:网络
I\'m new self learning to used开发者_开发百科 Jquery functions and i have no ideas how to do the following.

I'm new self learning to used开发者_开发百科 Jquery functions and i have no ideas how to do the following.

How do i used the following script to apply to more that one div id on the same page?

<script type="text/javascript" src="/jquery.js"></script>
<script type="text/javascript" src="/jquery.form.js"></script>
<script type="text/javascript" src="/jquery.validate.js"></script>
<script type="text/javascript">
    $('document').ready(function()
    {

      $('#memberslinkupform').ajaxForm( {
        target: '#memberslinkup', 
        success: function() { 
          $('#formbox').slideUp('fast'); 
        } 
      }); 
    });
</script>


Add another ID in your selector like so

$('#memberslinkupform,#anotherId').ajaxForm({ ...})

A comma between the 2 items you wish to select. Adding a class is one option as well and then attaching the class to both the forms.


You can give your <div> elements a "class" value and then:

  $('div.your-class-name').ajaxForm({ ... });

Note that the jQuery "form" plugin is kind-of old, and with modern versions of jQuery it's hard to find reasons to use it.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号