注册 登录
编程论坛 WEB前端(UI)

关于超连接。。。。。。。。。。

可乐汽水 发布于 2004-12-02 19:35, 722 次点击

设置了一个留言系统,其中“提交留言”是用表单中的“按钮”,怎么和回复设置超连接。

我点击“提交留言”中的属性看不到超连接选项~~~~~~~~~~怎么设置~~谢谢

1 回复
#2
yl102004-12-03 13:51

可以在“行为”面板里操作,或直接加代码

例: 本地连接: <input type="submit" name="Submit" value="提交" onclick="location='http://YL10.126.Com'"> 打开新窗口: <input type="submit" name="Submit" value="提交" onclick="window.open('http://YL10.126.Com')">

1