2

我会在这里非常具体。如果您访问UtahRealEstate.com并进行搜索并查看地图视图中的结果,则地图上到处都是地块,右侧有列表。如果您单击地图上的一个图钉,您会看到一个弹出窗口,然后单击 MLS #,您会看到另一个带有属性描述的弹出窗口。您还可以单击右侧列表中的 MLS 编号并打开属性描述弹出窗口。

我想在该弹出窗口的 html 中添加一个按钮。我可以很好地插入 html,但挑战是,我如何确定该属性描述何时加载,以便我可以读取其中的 html 并添加我的按钮?

截图:

在此处输入图像描述

在此处输入图像描述

在此处输入图像描述

4

2 回答 2

1

我使用了在必须基于用户点击之前不查找元素的技巧。真正棘手的部分是地图上卡片中显示的 MLS 号码链接正在停止将点击事件传播到窗口,因此我无法使用实时点击绑定。

我真的病了,所以我不能再熬夜了,但是代码的注释相当好,所以你应该能够读懂我的疯狂。; )

ruleset a60x561 {
  meta {
    name "utahrealestate"
    description <<
      utahrealestate
    >>
    author "Mike Grace"
    logging off
  }

  dispatch {
    domain "utahrealestate.com"
  }

  rule search_for_realestate {
    select when web pageview "\/search\/"
    pre {

    }
    {
      notify("title","content") with sticky = true;
      emit <|
        // sidebar click watching easy
        // click event isn't being blocked so we can use .live and not 
        // worry about HTML being present at time of event listener binding
        $K(".full_line a").live("click", function() {
          console.log("sidebar mls clicked");
          // get the report!!!
          KOBJ.a60x561.getReport();
        });

        // pin on map mls number is a bit harder because click event is 
        // being blocked from propegating to the window
        // to get around this we can
        // 1) watch for click on pin
        // 2) wait for mls element to load
        // 3) attatch our own element level event listener
        $K("#mapdiv_OpenLayers_Container image").click(function() {
          console.log("pin on map clicked");
          // attatch click event listener on mls element once it loads
          setTimeout(function() {
            KOBJ.a60x561.grabMls();
          }, 500);
        });  

        // ATATCH LISTENER TO MLS NUM ON MAP
        KOBJ.a60x561.grabMls = function() {
          console.log("looking for mls in hovercard");

          // grab jQuery reference to element we are looking for
          var $cardMls = $K("#property-overview a:first");

          // only go on if it's on the page and visible
          if ( ($cardMls.length > 0) && ($cardMls.is(":visible")) ) {

            console.log("foud mls on hevercard");

            // watch for click on mls num on card
            $cardMls.click(function() {
              console.log("mls clicked on hovercard above map pin");
              // get the report!!!
              KOBJ.a60x561.getReport();
            });
          } else {
            setTimeout(function() {
              KOBJ.a60x561.grabMls();
            }, 500);
          };
        };

        // GRAB REALESTATE LISTING DETAILS ONCE IT LOADS IN THICK BOX
        KOBJ.a60x561.getReport = function() {
          if ($K("#public-report-wrap").length > 0) {
            console.log("Listing details found!");
          } else {
            setTimeout(function() {
              KOBJ.a60x561.getReport();
            }, 500);
          };
        };
      |>;
    }
  }
}

我测试应用程序时的萤火虫控制台屏幕截图

在此处输入图像描述

于 2011-02-04T18:13:16.903 回答
1

简短的回答(我稍后会编辑):

使用动作Watch来观察选择器。

然后,单击时使用选择。

于 2011-02-03T19:53:32.243 回答