本文目录一览:
js中点击“文字”进入链接
head
title/title
script type="text/javascript"
function value_popup()
{
alert("haha");
}
/script
/head
body
a href="javascript:value_popup()"profile update/a
/body
/html
js里面有什么方法可以打开一个网页
script
window.location.href="新页地址"; //将本页替换成新页面
window.open("新页地址"); //弹出一个新页面
/script
js 点击文字弹出窗口问题
var text1, text2;
function OpenDiv(_Dw,_Dh,_Desc) {
text1="好天气???";
text2="好麻烦啊??";
改成
var text1, text2;
text1="好天气???";
text2="好麻烦啊??";
function OpenDiv(_Dw,_Dh,_Desc) {
因为你第一次执行时,text1和text2跟本没有给赋值。
当第一次点后才赋的值。以后再点当然显示正常了。