adrotator
我的Asp.net 母版页上有一个
<asp:AdRotator ID="adr" AdvertisementFile="~/Adrotator.xml" Width="180px" Height="200px"
runat="server" Target="_self" />
我正在使用以下 jquery 来旋转 ADS 。但是它无法检测到 Adrotator 控件的 id
$(document).ready(function () {
setInterval(function () {
$("[id$='adr']").load(location.href + "[id$='adr']", "" + Math.random() + "");
}, 5000);
});
注意:我已经尝试过使用$("[id$='adr']")
and$('[id$=\'adr\']')
和'#adr'