test1.html
<script>$(function(){
$.get(
"test1.php",{},function(result){
//$("#result").html(result);
$("#result").html(result);
});});</script><div data-role="page" id="home">
<div data-role="header">
<h1>test</h1>
</div>
<div data-role="content">
<div id="result"></div>
</div>
test1.php
<?
echo "<a href='#' id='btn_del' data-role='button' data-inline='true' data-icon='delete'>Del</a>";
?>
它不显示按钮,但只显示超链接。 我该怎么办?
答案 0 :(得分:1)
您需要刷新嵌入按钮的jquery ...
<强>刷新()强> 更新jquery mobile中的表单按钮。
如果您通过JavaScript操作表单按钮,则必须在其上调用refresh方法以更新视觉样式。