从UIWebView或WKWebView调用AngularJS ng-click函数

时间:2019-01-08 06:55:58

标签: ios angularjs uiwebview wkwebview

我想从第三方网站调用函数, 该功能可以在 ng单击中进行。我正在探索从我的 webview wkwebview 进行调用而无需用户交互的方法。

我尝试通过网络浏览器(Chrome)上的控制台调用它。并且可以通过输入以下命令来工作。

  

angular.element($ 0).scope()。selectAllPastBookings;

我想从应用程序中调用相同的功能。

<md-checkbox aria-label="All" ng-model="selectAllPastBookings" class="main-green ng-valid ng-dirty ng-valid-parse ng-touched" ng-checked="isChecked()" md-indeterminate="isIndeterminate()" ng-click="!IsClickEnable||toggleAll(pastBookings,selected)" tabindex="0" type="checkbox" role="checkbox" aria-checked="false" aria-invalid="false" style=""><div class="md-container md-ink-ripple" md-ink-ripple="" md-ink-ripple-checkbox=""><div class="md-icon"></div><div class="md-ripple-container"></div></div><div ng-transclude="" class="md-label"><span class="ng-binding ng-scope">
                            All
                        </span></div></md-checkbox>

我也尝试过:

  

shouldStartLoadWith   但它不会调用该函数。

只想在ng-click中调用函数。

0 个答案:

没有答案