我想通過在HTML window.open控制器返回範圍變量的值,但問題是我得到一些垃圾值,請參見下面的代碼。如何使用角度JS範圍變量在HTML
<header>
<span class="item-title">{{x.name}}</span>
<span class="list-item-note-sendmoney1" onclick="window.open('tel:{{x.phone}}', '_system')"><ons-icon icon="ion-android-call"></ons-icon></span>
</header>
<p class="swipe-item-desc">{{x.phone}}</p>
我想通過{{x.phone}}
到window.open('tel:')
功能。
x.phone正在外面window.open? –
是的,正確顯示。 –
你想在用戶點擊圖標時撥打號碼嗎? –