本文介绍了javascript函数调用根据其他控件事件触发的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,



我使用的是asp:updatepanel,asp:updatepanel包含imageslider,gridview等

我正在调用javascript在pageload()中的函数用于维护imageslider的阶段,但每次imagelider进入它的起始位置,如:

Hello,

I am using asp:updatepanel, asp:updatepanel contains imageslider, gridview etc.
and i am calling javascript function in pageload() for maintain the stage of imageslider but every time imageslider comes in it's starting position, like:

function pageLoad()
                {
                $(function () {
                $('#mycarousel').jcarousel();
                });
                }





这就是为什么我想根据gridview eventfire调用此函数或任何其他选项来调用Jcarousel() gridview控件ID。



请帮助



谢谢

Shubham Gupta



that's why i want to call this function according to gridview eventfire or any other option to call Jcarousel() according gridview control ID.

please help

Thanks
Shubham Gupta

推荐答案






这就是为什么我想根据gridview eventfire调用此函数或任何其他选项来调用Jcarousel() gridview控件ID。



请帮助



谢谢

Shubham Gupta



that's why i want to call this function according to gridview eventfire or any other option to call Jcarousel() according gridview control ID.

please help

Thanks
Shubham Gupta


//Your JS function ... 
function doCarousel(){


这篇关于javascript函数调用根据其他控件事件触发的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 14:41