2017-02-19 41 views
0

你如何做到這一點,那麼當你有這個價值時,它只是一個無線電顯示文本。也就是說,總會只有一個被顯示。而且不能向其他人展示。只需要顯示在某個地區的標誌

enter image description here

的,我加紅框到只顯示所用的文本。而其他地方則沒有披露。

<span ng-show="PakkeValue.UserCount >= 1">Du får ekstra profil - {{PakkeValue.UserCount}} stk.</span> 

EIDT更新:

<div class="form-group"> 
@foreach (var item in Model.listpric) 
{ 
    <div class="col-md-4"> 
     <input name="Pakke1" 
       type="radio" 
       ng-model="PakkeValue" 
       ng-value="{ 
       IdPakke: '@item.id', 
       Months: '@item.mdr', 
       Price: '@item.pristal', 
       UserCount: '@item.UserCount'}" /> 
     @item.mdr måned(er) (@item.pristal,- kr./md) <span ng-show="PakkeValue.UserCount >= 1">Du får ekstra profil - {{PakkeValue.UserCount}} stk.</span> 
    </div> 
} 
</div> 
+0

您需要發佈您的單選按鈕的代碼爲好,你的問題是不是由它自己@Jasper – Yaser

+0

清楚我有更新@Yaser – Jasper

+0

@Jasper是這個谷歌翻譯?我不瞭解你。 – lin

回答

0

我看到您的問題,您使用PakkeValue顯示或隱藏的跨度,等於對所有電臺的的。你必須使用的東西是獨特的個人無線或移動您的跨度循環之外:

下面是一個檢查連接用戶數量和價格來顯示它只是在其中的一個版本。您可以使用任何其他唯一值。

<div class="form-group"> 
    @foreach (var item in Model.listpric) 
    { 
     <div class="col-md-4"> 
      <input name="Pakke1" 
        type="radio" 
        ng-model="PakkeValue" 
        ng-value="{ 
        IdPakke: '@item.id', 
        Months: '@item.mdr', 
        Price: '@item.pristal', 
        UserCount: '@item.UserCount'}" /> 
      @item.mdr måned(er) (@item.pristal,- kr./md) 
      <span ng-show="PakkeValue.UserCount >= 1 && PakkeValue.Price == @item.pristal">Du får ekstra profil - {{PakkeValue.UserCount}} stk.</span> 
     </div> 
    } 
</div> 
+0

不錯! og謝謝你的幫助。我跳你會給我+1 – Jasper

相關問題