js判断href赋值空后隐藏a标签
js里面赋值了href标签php变量if语句判断如果空不显示A标记弄了半天不知道哪里错了就是一直显示希望有有人能帮助下新手谢谢。<divid="gobuy"><aid="...
js里面赋值了href标签php变量 if语句判断如果空不显示A标记 弄了半天不知道哪里错了 就是一直显示 希望有有人能帮助下新手 谢谢。
<div id="gobuy">
<a id="goto" href="javascript:void(0);" onclick="doClick(gourl);" target="_blank" >点击打开</a></div>
</div>
<script>
var sw = location.search.substring(1,location.search.length);
//gourl = ""+sw;
var gourl ="<{$_baobeiurl}>"; //php变量调用链接地址
function doClick(){
var o=document.getElementById('goto');
if(document.all){
o.href = gourl;
o.click();
}else{
window.location.href = gourl;
}
}
function show(){
var a=document.getElementById('goto');
if(gourl==''){
alert("运行1");
document.getElementById("goto").style.display = "none";
}else{
alert("运行2");
document.getElementById("goto").style.display = "inline";
}
}
if(gourl=="")
// if(gourl.type=="undefined")
{
document.getelementbyid('gobuy').style.display=none;
}
alert(gourl);
</script>
真心谢谢 希望新手有人帮助谢谢。 展开
<div id="gobuy">
<a id="goto" href="javascript:void(0);" onclick="doClick(gourl);" target="_blank" >点击打开</a></div>
</div>
<script>
var sw = location.search.substring(1,location.search.length);
//gourl = ""+sw;
var gourl ="<{$_baobeiurl}>"; //php变量调用链接地址
function doClick(){
var o=document.getElementById('goto');
if(document.all){
o.href = gourl;
o.click();
}else{
window.location.href = gourl;
}
}
function show(){
var a=document.getElementById('goto');
if(gourl==''){
alert("运行1");
document.getElementById("goto").style.display = "none";
}else{
alert("运行2");
document.getElementById("goto").style.display = "inline";
}
}
if(gourl=="")
// if(gourl.type=="undefined")
{
document.getelementbyid('gobuy').style.display=none;
}
alert(gourl);
</script>
真心谢谢 希望新手有人帮助谢谢。 展开
展开全部
<a id="goto" href="javascript:void(0);" onclick="doClick(gourl);" style="display:none;" target="_blank" >点击打开</a>
<div id = "div1"><a id="goto" href="" onclick="doClick(gourl);" style="display:none;" target="_blank" >点击打开</a></div>
<div id = "div2">点击打开</div>
<script>
window.onload = test;
function test(){
if( document.getElementById("goto").href == "") {
document.getElementById("div1").style.display = "none";
document.getElementById("div2").style.display = "block";
}else{
document.getElementById("div2").style.display = "none";
document.getElementById("div1").style.display = "block";
}
}
</script>
最笨的解决办法 希望可以帮助你 直接再网页上手打的 可能有错误 思路是这样的
<div id = "div1"><a id="goto" href="" onclick="doClick(gourl);" style="display:none;" target="_blank" >点击打开</a></div>
<div id = "div2">点击打开</div>
<script>
window.onload = test;
function test(){
if( document.getElementById("goto").href == "") {
document.getElementById("div1").style.display = "none";
document.getElementById("div2").style.display = "block";
}else{
document.getElementById("div2").style.display = "none";
document.getElementById("div1").style.display = "block";
}
}
</script>
最笨的解决办法 希望可以帮助你 直接再网页上手打的 可能有错误 思路是这样的
追问
谢谢 方法不错 可是 不行 gourl 申明变量赋值了php变量的缘故 都弹出undefined 有没别的办法呢
追答
你可以建一个表单 赋值到表单中 用JS 获取
eg:
" id = "hiddenInput">
var gourl = document.getElementById("hiddenInput").value;
这样就可以获取到后台的值了 因为传参是在前端框架以及JS 加载完成之后 才会传过来的 所以JS 获取到的值就是空;
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把js代码放在html代码上面。
<a id="goto" href="javascript:void(0);" onclick="doClick(gourl);" target="_blank" >点击打开</a></div>
doClick这个方法哪有参数?
function doClick(){
var o=document.getElementById('goto');
if(document.all){
o.href = gourl;
o.click();
}else{
window.location.href = gourl;
}
}
应该改成function doClick(gourl){}。楼主太粗心了
<a id="goto" href="javascript:void(0);" onclick="doClick(gourl);" target="_blank" >点击打开</a></div>
doClick这个方法哪有参数?
function doClick(){
var o=document.getElementById('goto');
if(document.all){
o.href = gourl;
o.click();
}else{
window.location.href = gourl;
}
}
应该改成function doClick(gourl){}。楼主太粗心了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |