我有一个带有标签模块的网页(Wordpress)。我想要的是,如果你点击一个特定的标签标题,它将重定向到另一个URL。
问题是标签模块没有为我提供编辑网址的选项。
标签模块代码如下:
using (Stream stream = response.GetResponseStream())
using (StreamReader reader = new StreamReader(stream))
由于每个标签标题都有一个类,是否可以使用Javascript更改URL?假设我要更改课程中的链接' et_pb_tab_5'到www.google.com。
谢谢!
答案 0 :(得分:0)
您可以在Javascript中使用:
window.onblur = function () { document.title = 'Why Did You Leave?'; }
window.onfocus = function () { document.title = 'You Came Back! YAY!'; }