我需要做的這一點,但使用Drupal形式:如何使用Drupal表單API製作後退按鈕?
<input type="button" class="button-user" value="Back" onclick="location.href='edit'"/>
我試圖這樣做,但它沒有工作:
$form['back']['#prefix'] = "<input type='button' class='button-user' value='Back' onclick='location.href='edit''/>;
也:
$form['back'] = array(
'#type' => 'button',
'#value' => 'Back',
'#attributes' => array(
'class' => 'button-user',
'onclick' => 'location.href=edit',
)
);
你永不落幕的第一個用引號'「' – switz