如何判断这个name为title的值为空?
jquery的写法是?
刚接触jquery,还不大熟悉,望兄弟们指教。
11 个解决方案
#1
$("input[@name=title]").eq(0).val() == ""
#2
$("input[name='title']:first").val()==""
#3
附:1.3不要@.以前的要@
#4
对,1.3不要@了。
那怎么判断子框架即iframe中的表单是否为空呢?有没有办法呢。应该有的吧。
那怎么判断子框架即iframe中的表单是否为空呢?有没有办法呢。应该有的吧。
#5
说白了就是判断一下fckeditor编辑器中是否输入了内容?
#6
$(window.frames["iframeId"].document).("#formId").find("xx").val()==""
#7
html = FCKeditorAPI.GetInstance( 'content' ).GetData() ;
#8
JQ1.2.1以后的版本是不支持XPATH的,需要增加一个插件才可以。
不过想判断某个属性是否为空可以:
$('input').attr('title')==''
$('input[@title^='']')
类似的用法。
不过想判断某个属性是否为空可以:
$('input').attr('title')==''
$('input[@title^='']')
类似的用法。
#9
$.trim($("input[@name=title]").eq(0).val()).length == 0
#10
jQuery很好狠强大!
#11
var inputs=document.getElementByName("title");
if(inputs[0]=="")
{
//为空
}
if(inputs[0]=="")
{
//为空
}
#1
$("input[@name=title]").eq(0).val() == ""
#2
$("input[name='title']:first").val()==""
#3
附:1.3不要@.以前的要@
#4
对,1.3不要@了。
那怎么判断子框架即iframe中的表单是否为空呢?有没有办法呢。应该有的吧。
那怎么判断子框架即iframe中的表单是否为空呢?有没有办法呢。应该有的吧。
#5
说白了就是判断一下fckeditor编辑器中是否输入了内容?
#6
$(window.frames["iframeId"].document).("#formId").find("xx").val()==""
#7
html = FCKeditorAPI.GetInstance( 'content' ).GetData() ;
#8
JQ1.2.1以后的版本是不支持XPATH的,需要增加一个插件才可以。
不过想判断某个属性是否为空可以:
$('input').attr('title')==''
$('input[@title^='']')
类似的用法。
不过想判断某个属性是否为空可以:
$('input').attr('title')==''
$('input[@title^='']')
类似的用法。
#9
$.trim($("input[@name=title]").eq(0).val()).length == 0
#10
jQuery很好狠强大!
#11
var inputs=document.getElementByName("title");
if(inputs[0]=="")
{
//为空
}
if(inputs[0]=="")
{
//为空
}