jquery触发a标签跳转事件示例代码
程序员文章站
2022-04-18 12:51:27
1.写入标签:
3.解释:
$("#signout").text()为我所需要判断的对应id的html元素的值
1.写入<a>标签:
<a target="_blank" href="javascript:void(0)" onclick="checkvalidate()">水觅微博</a>
2.加入js:
. 代码如下:
<script type="text/javascript">
function checkvalidate(){
if($("#signout").text()){
window.location.href="<%=basepath%>//weibo/index.jsp";
}else{
window.location.href="<%=basepath%>index.jsp";
}
}
</script>
3.解释:
$("#signout").text()为我所需要判断的对应id的html元素的值
上一篇: PyMySQL模块的使用