从数据属性jquery模拟图像点击

时间:2019-01-05 02:15:32

标签: jquery

我正在编写一个小脚本来打开jquery的引导模式。这是Android应用程序的一部分,因此,如果用户安装了该应用程序,则该链接将深层链接到该应用程序,否则,我想显示一个模式。

这是我目前拥有的。

<img class="shareImage" data-toggle="modal" data-target="#shareModal" src="share.png" width="35px"/>

这是警报功能。这不起作用,该如何解决?

function showalert() {
    $('img[data-target="#shareModal"]').click(function(event) {
        console.log("sadsfg");
    });
}

我的超时时间。

setTimeout(showalert, 1000);

1 个答案:

答案 0 :(得分:0)

嗯,这比我做的要容易得多。

我能够用以下代码成功完成此操作。

    static void Main(string[] args)
    {
        Random random = new Random();
        String[] students = { "Fred", "Mary", "Yusef", "Kyle", "Sophie", "Lydia", "Max", "Donald", "Yasmin", "Archie" };

        int count = 0;

        for (int i = 0; i < 5; i++)
        {
            string[] shuffleStudents = students.OrderBy(x => random.Next()).ToArray();


            Console.Write("{0} and {1}", shuffleStudents[count], shuffleStudents[count+1]);

            for (int j = 0; j < 5; j++)
            {

                count++;
            }
        }


        Console.Read();

    }
}