English 中文(简体)
jquery Mobile with php?
原标题:jquery mobile with php?

I m试图学习杂草的移动,我很想知道,能否像我建造一个固定的网站那样,用PHP使用支流移动吗?

with jquery mobile tags are almost the same, but they use tags such as data-role,

索引t.html

<div data-role="header">
<div data-role="content">
content page
</div>
</div>

我能做这样的事情。

指数.html

<div data-role="header">
<div data-role="content">
<?php echo $content; //this content will be populated by mysql
?>
</div>
</div>

或者,我是否必须利用麻风气来获取内容?

指数.html

$(document).ready(function(){
$.ajax({
  url: "测试.html",
  success: function(data){
    $( .page1 ).html(data);
  }
});
});


<div data-role="header">
<div data-role="content" class= page1 >
<?php echo $content; //this content will be populated by mysql
?>
</div>
</div>

测试.html

<?php
$sql = mysql_query("SELECT * FROM test");
while($q = mysql_fetch_array($sql)){
$content = $q[ content ];
echo $content;
}
?>
最佳回答

I m试图学习杂草的移动,我很想知道,能否像我建造一个固定的网站那样,用PHP使用支流移动吗?

当然。 www.un.org/Depts/DGACM/index_french.htm

j的移动标签几乎相同,但它们使用数据控制等标签,

这些是属性,不是标的,是标准的超文本5(因为超文本5是一种标准,因为它仍然是草案形式)。

即便是价格标准,公共卫生和社会福利部也会提供护理。 就它而言,它只是产出案文。

问题回答

暂无回答




相关问题
ajax login using httpRequest?

I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

Virtual Tour using sketch up, ajax, flash technologies

I want to know if there are existing technology that make your 3d models in sketch into virtual tours, using either Ajax or Flash for web presentation. If there s none, which will be a good approach ...

How can i update div continuously

I have asp.net application where i have a div which showing the value from other site. The value of that site is changing continuously. I want that my div will automatically update in some interval ...

热门标签