从" html表中调用函数"在drupal 7中

时间:2015-09-28 08:31:43

标签: php module drupal-7

单击BUTTON时我需要调用FUNCTION。我怎么能这样做? (我知道我写的代码是错误的,只是为了说清楚)

public string Name
{
    get { return Get(m_name); }
    set { m_name = value; }
}

public static T Get<T>(T value)
{
    if (!loaded)
    {
        loadData();
    } 
    return value;
}

1 个答案:

答案 0 :(得分:0)

您需要在html按钮标记中添加:

<button onClick="yourFunction()">