为什么href里面的按钮不起作用?

时间:2015-03-24 09:48:56

标签: ionic-framework href

<button class="button button-outline button-positive">
    <a href="www.google.com">fes</a>
</button>

如果我使用ng-click,它的工作正常,但我需要href

2 个答案:

答案 0 :(得分:19)

删除按钮并使用类名称装饰a元素。

<a href="www.google.com" class="button button-outline button-positive">fes</a>

希望这会有所帮助。

答案 1 :(得分:0)

在html页面中:

def partial_load(filename,key,col_subset):
    handle = h5py.File(filename,'r')
    columns = decode(handle.get("{}/axis0".format(key))[:])
    rows = decode(handle.get("{}/axis1".format(key))[:])

    col_subset_idx = np.isin(columns,col_subset)
    matrix = handle.get("{}/block0_values".format(key))[:,col_subset_idx]

    dt_list = []
    for col_name in col_subset:
        dt_list.append((col_name, matrix.dtype),)
    matrix_recarr = np.recarray((matrix.shape[0],),dtype=np.dtype(dt_list))
    for col in range(len(col_subset)):
        matrix_recarr[col_subset[col]] = matrix[:,col]

    return matrix_recarr

在ts页面:

<button menuClose ion-item (click)="openExternalPage(urlCgu)"><ion-icon name="ios-paper-outline" color="primary" item-start ></ion-icon> Conditions d'utilisation</button>