Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
$(document).ready(function(){
$("#button").click(function(){
$.get('./index.php', {id:$(this).attr("rel"), rating: 'type'}, function(data){
$("#divMain").append(data);
});
return false;
});
});
<intput type="button" id="button" value="get page" rel="<?php echo $id;?>">
<div id="divMain"></div>
HTML:$(document).ready(function(){ $("#button").click(function(){ $.get('./index.php', {id:$(this).attr("rel"), rating: 'type'}, function(data){ $("#divMain").append(data); }); return false; }); });
HTML:<intput type="button" id="button" value="get page" rel="<?php echo $id;?>"> <div id="divMain"></div>
$(document).ready(function(){
$("input.button").each(function(){
$(this).click(function(){
$.get('./index.php', {id:$(this).attr("rel"), rating: $(this).attr("attr_type")}, function(data){
$("#divMain").append(data);
});
return false;
});
});
});
//some $type=???.....
foreach($arr_id as $id){
echo '<intput type="button" class="button" value="get page" rel="'.$id.'" attr_type="'.$type.'">';
}
echo '<div id="divMain"></div>';
function rate(id,rate)
{
$.get("http://site/index.php", { id: id, rate: rate },
function(data)
{
$("#q"+id).append(data);
});
}