我想检查由“h ref onClick”javascript函数触发的隐藏字段的值。如果它是“空的”,我想提示用户使用评级表对我的页面进行评级(从而保持在同一页面并忽略h ref目标页面。如果值是“评级”,我想简单地允许用户进入预期页面。
这是我迄今为止开发的一些代码,但效果不是很好:
function ratings_prompt(){
var checkIfRated = document.getElementById("hidden_rating");
if (checkIfRated.value == "empty")
{
alert("The Field is set to empty - please rate the form!");
checkIfRated.value=="rated";
}
}
编辑:抱歉,我似乎无法将所有代码都放入代码块中。
GF
答案 0 :(得分:0)
无法真正帮助你看到更多的代码,而且你并没有真正说出问题是什么......“真的没有那么好用”有点模糊......但是基本上你会在你的链接中点击你的函数调用,你应该传递一个“this”引用函数,你应该返回false;在你的onclick中也是如此。然后在您的函数中,如果隐藏字段不为空,请执行location.href = that.href
<a href='somepage.html' onclick="yourFunction(this);return false;">link</a>
<script type='text/javascript'>
function yourFunction(that) {
if (document.getElementById("hidden_rating").value != "empty") {
location.href = that.href;
} else {
// didn't rate
}
}
</script>