My Desktop :) 桌面式代码
更新时间:2008年12月29日 20:28:16 作者:
My Desktop 桌面式 代码
复制代码 代码如下:
<body bgcolor="black">
<script language = "javascript">
function loadframe(url)
{
mainone.innerHTML = "<iframe src='" + url + "' width='100%' height='500'></iframe>";
}
function loadframefrominput(url)
{
var tmpstr;
tmpstr = url.value;
try{
if(tmpstr==""||tmpstr=="http://"||tmpstr=="https://"||tmpstr=="ftp://")
mainone.innerHTML = "Please enter URL.";
else if(tmpstr.indexOf("http://")>=0||tmpstr.indexOf("https://")>=0||tmpstr.indexOf("ftp://")>=0)
mainone.innerHTML = "<iframe src='" + tmpstr + "' width='100%' height='500'></iframe>";
else
mainone.innerHTML = "Please enter a valid URL.";
}catch(err)
{
mainone.innerHTML = err.description;
}
}
function contain(str,charset)
{
var i;
for(i=0;i<charset.length;i++)
if(str.indexOf(charset.charAt(i))>=0)
return true;
return false;
}
function clearframe()
{
mainone.innerHTML = "";
}
</script>
<font color=white>
<table border="0" width="1000" align=center>
<p>
<hr/>
<button onclick="loadframe('http://rss.news.sohu.com/rss/guoji.xml')">Sohu Int.</button>
<button onclick="loadframe('http://rss.news.sohu.com/rss/it.xml')">Sohu IT</button>
<button onclick="loadframe('http://rss.news.sohu.com/rss/guonei.xml')">Sohu Nat.</button>
<button onclick="loadframe('https://www.jb51.net')">jb51.net</button>
<button onclick="loadframe('http://www.baidu.com')">baidu</button>
<button onclick="loadframe('http://www.google.com')">Google</button>
<button onclick="clearframe()">Close</button>
Open a URL: <input id="urltxt" size="50" value="http://"/> <button onclick="loadframefrominput(urltxt)"> Go! </button>
<hr/>
<div id="mainone" width="100%" hight="500"></div>
</table>
</font>
</body>
相关文章
JS清除文本框内容离开在恢复及鼠标离开文本框时触发js的方法
多网站的需要填写的文本框在默认状态下都会给出一个默认的提示语言,当鼠标点击此文本框的时候能够将里面的默认文本清除,当删除输入的文本且焦点离开文本框的时候再将默认的文本写入文本框2016-01-01如何在uniapp中获取可视区域的高度(uni.getSystemInfo)
这篇文章主要给大家介绍了关于如何在uniapp中获取可视区域的高度(uni.getSystemInfo)的相关资料,文中通过图文以及实例代码介绍的非常详细,对大家学习或者使用uniapp具有一定的参考学习价值,需要的朋友可以参考下2023-04-04js 模块化CommonJS AMD UMD CMD ES6规范详解
这篇文章主要为大家介绍了js 模块化CommonJS AMD UMD CMD ES6规范详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-04-04
最新评论