如何在js中调用asp获取的内容??
我的网站加入了一键转发新浪微博的功能,从新浪微博提取了js代码,我站点中有一个asp是调用其他网站获取的内容,asp为<%=imdoit%>。新浪的js代码为:<scri...
我的网站加入了一键转发新浪微博的功能,从新浪微博提取了js代码,我站点中有一个asp是调用其他网站获取的内容,asp为 <%=imdoit%>。 新浪的js代码为:<script type="text/javascript">document.write('<iframe frameborder="0" scrolling="no" src="http://hits.sinajs.cn/A1/weiboshare.html?url=%url%&appkey=15664356&type=5&title=这里是内容&ralateUid=1745671265" width="103" height="24"></iframe>'.replace(/%url%/,encodeURIComponent(location.href)));</script>
我要在title=后面插入 <%=imdoit%>这里获取到的内容,该怎么解决啊??急求!! 展开
我要在title=后面插入 <%=imdoit%>这里获取到的内容,该怎么解决啊??急求!! 展开
1个回答
展开全部
<script type="text/javascript">
function imdoit(title){
document.write('<iframe frameborder="0" scrolling="no" src="http://hits.sinajs.cn/A1/weiboshare.html?url=%url%&appkey=15664356&type=5&title='+title+'&ralateUid=1745671265" width="103" height="24"></iframe>'.replace(/%url%/,encodeURIComponent(location.href)));
}
</script>
<script>imdoit('<%=imdoit%>');</script>
简单的就是这样
function imdoit(title){
document.write('<iframe frameborder="0" scrolling="no" src="http://hits.sinajs.cn/A1/weiboshare.html?url=%url%&appkey=15664356&type=5&title='+title+'&ralateUid=1745671265" width="103" height="24"></iframe>'.replace(/%url%/,encodeURIComponent(location.href)));
}
</script>
<script>imdoit('<%=imdoit%>');</script>
简单的就是这样
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询