0

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>"; ?>

ボタンは表示されませんが、ハイパーリンクが表示されるだけです。どのようにできるのか?

4

1 に答える 1