document.getElementById('mininotes').innerHTML="
- 1 : 醉书生 于 2011-11-24 说
在车站等车,看到排队的的哥向前挪车都是一个个下车推,轮到自己是头车才上车打火,油贵伤不起呀 - 2 : 醉书生 于 2011-9-6 说
断断续续辛苦了半年时间,一个马路杀手终于诞生了。 - 3 : 醉书生 于 2011-7-22 说
百度推广其实是很有用的,比如我一直将它当作打假的最有效工具,只要是百度推广的一很按假货对待,不会吃亏。淘宝上想买个什么东东,先百度一下,如果推广里有介绍,立即掉头走人。 - 4 : 醉书生 于 2011-6-22 说
世界上最可怕的不是事,是人 - 5 : 醉书生 于 2011-6-22 说
信产部喜欢折腾,换一拨人就要你备案一次,每次都是提交相同的资料,我就不明白,你们就不会交接一下吗?
更多>>
";
function saveNote()
{
if (document.form1.content.value==''){
document.form1.content.focus();
return false;
}
if(document.form1.isp.checked)
isp=1
else
isp=0
getdata('mininotes.asp?action=post&s=5&content='+encodeURIComponent(document.form1.content.value)+'&isp='+isp);
}
function createxmlhttp()
{
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
if (xmlhttp.overrideMimeType) {//设置MiME类别
xmlhttp.overrideMimeType('text/xml');
}
}
return xmlhttp;
}
function getdata(sURL)
{
var xmlhttp=createxmlhttp();
if(!xmlhttp)
{
alert("你的浏览器不支持XMLHTTP!!");
return;
}
xmlhttp.open("GET",sURL,true);
//中文乱码!!
//xmlhttp.setrequestheader("content-type","application/x-www-form-urlencoded");
xmlhttp.onreadystatechange= function ()
{
if(xmlhttp.readyState==4)
{
if(xmlhttp.status==200)
{
//alert(xmlhttp.responseText);
//return xmlhttp.responseText;
//return xmlhttp.responseText;
document.getElementById('mininotes').innerHTML=xmlhttp.responseText;
}
}
}
xmlhttp.send(null);
}