jquery 问题 不执行 IF 语句
varStr=document.getElementById("weatherInfo").value;varstyle='';if(Str=="阵雨转小雨"){styl...
var Str = document.getElementById("weatherInfo").value;
var style = '';
if(Str=="阵雨转小雨")
{
style='background:url('+path+sky+'_'+0+'.png) no-repeat;';
html += '<div style="background:url(images/cloudys_0.png)no-repeat;"class="'+sky+' child'+0+'" ></div>'
html += '<div class="'+sky+' child'+1+'" title="'+opts.title+'" style="'+style+'" ></div>'
} 展开
var style = '';
if(Str=="阵雨转小雨")
{
style='background:url('+path+sky+'_'+0+'.png) no-repeat;';
html += '<div style="background:url(images/cloudys_0.png)no-repeat;"class="'+sky+' child'+0+'" ></div>'
html += '<div class="'+sky+' child'+1+'" title="'+opts.title+'" style="'+style+'" ></div>'
} 展开
展开全部
问题在于你的这句,var Str = document.getElementById("weatherInfo").value;
只有在你的这个weatherInfo ID所在的对象是一个input的时,才能用.value取到值,其他的非input的对象得用.innerText 或.innerHtml
也就是这样:var Str = document.getElementById("weatherInfo").innerText;
只有在你的这个weatherInfo ID所在的对象是一个input的时,才能用.value取到值,其他的非input的对象得用.innerText 或.innerHtml
也就是这样:var Str = document.getElementById("weatherInfo").innerText;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<script>
$(function(){
$("#btn").click(function(){
if($("#user_name").val()==""){
alert("请填写用户名!");
/* $("#user_name").focus(function(){
$("#user_name").val($("#user_name").val());
}); 若想聚焦,有下面一句就行了 */
$("#user_name").focus();
return false;
}
});
});
</script>
其中:
focus() //执行触发事件。
focus(fn) //只绑定触发时运行的函数,不执行;仅当鼠标点击或Tab键聚焦时触发。
$(function(){
$("#btn").click(function(){
if($("#user_name").val()==""){
alert("请填写用户名!");
/* $("#user_name").focus(function(){
$("#user_name").val($("#user_name").val());
}); 若想聚焦,有下面一句就行了 */
$("#user_name").focus();
return false;
}
});
});
</script>
其中:
focus() //执行触发事件。
focus(fn) //只绑定触发时运行的函数,不执行;仅当鼠标点击或Tab键聚焦时触发。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
var Str = document.getElementById("weatherInfo").value;
var style = '';
alert(Str);
if(Str=="阵雨转小雨")
{
alert('进if里面');
}
else
{
alert("在else里面");
}
var style = '';
alert(Str);
if(Str=="阵雨转小雨")
{
alert('进if里面');
}
else
{
alert("在else里面");
}
追问
还是在 else 里 啊
追答
只有那个提示吗?那证明你获得的Str不等于”阵雨转小雨“。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-09-15
展开全部
var Str = $("#weatherInfo").val(); //jquery的写法
var style = '';
if(Str=='阵雨转小雨')
{
style='background:url('+path+sky+'_'+0+'.png) no-repeat;';
html += '<div style="background:url(images/cloudys_0.png)no-repeat;"class="'+sky+' child'+0+'" ></div>';
html += '<div class="'+sky+' child'+1+'" title="'+opts.title+'" style="'+style+'" ></div>';
alert(html);
}
var style = '';
if(Str=='阵雨转小雨')
{
style='background:url('+path+sky+'_'+0+'.png) no-repeat;';
html += '<div style="background:url(images/cloudys_0.png)no-repeat;"class="'+sky+' child'+0+'" ></div>';
html += '<div class="'+sky+' child'+1+'" title="'+opts.title+'" style="'+style+'" ></div>';
alert(html);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
遇到这种情况,可以在if语句中加个alert 看在哪里出现问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询