我会要求任何知道如何在jquery中编程的用户以及在此原型中的以下代码中帮助我的原型。
function showPanelAds(){
$('ads').style.visibility="visible"
}
和
function blog(id){
var ActionAjax = new Ajax.Updater(
{success:'blogphere'},
'/inc/assistidos.asp',
{
method:'get',
parameters:'queryname='+id,
onFailure:function(){
$('blogphere').innerHTML="error...<br/><a href=\"javascript:blog('"+id+"')\">Tente novamente</a>";
}
});
}
感谢任何可以帮助我的人。
谢谢。答案 0 :(得分:0)
我不太了解Prototype,但这应该是我相信的jQuery等价物。
function showPanelAds(){
$('#ads').css('visibility','visible');
}
function blog(id){
var ActionAjax = $.ajax({
type:'GET',
url:'/inc/assistidos.asp',
data:'queryname='+id,
success:function(data) {
$('#blogphere').html(data); // Assumes you're returning some HTML
//$('#blogphere').append(data); // Or use append to add to existing content
},
error:function(){
$('#blogphere').html("error...<br/><a href=\"javascript:blog('"+id+"')\">Tente novamente</a>");
}
});
}
<强>文档强>
$.ajax()
- http://api.jquery.com/jQuery.ajax/ $.css()
- http://api.jquery.com/css/ $.html()
- http://api.jquery.com/html/ $.append()
- http://api.jquery.com/append/