我在我的应用程序中使用 jQuery 按钮,但由于某种原因,它显示为没有 jQuery 属性的普通按钮。html 标记位于一个名为 的单独文件ajax.php
中,而 jQuery 位于主文件中。
这是jQuery的编码:
$(".back_to_list").button().live("click", function(){
});
这是按钮的 html 标记:
$html = '';
$html .= '<table>
<tr>
<td><button class="back_to_list" >Back</button></td>
</tr>
</table>';
echo $html;
有谁知道为什么该按钮不显示为 jQuery ui 按钮?