本文介绍了检查是否存在隐藏字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有隐藏的字段,如



< input id =mainage [1]type =hiddenname =mainage [1]value = 1>< / input>



并想查看jquery或javascript是否存在



怎么做

I have hidden field like

<input id="mainage[1]" type="hidden" name="mainage[1]" value="1"></input>

and want to check from jquery or javascript if it exist

how to do it

推荐答案

<!DOCTYPE html>
<html>
<body>

<p>A demo page.</p>

<button onclick="myFunction()">Try it</button>

<input id="mainage[1]" type="hidden" name="mainage[1]" value="1"></input>

<script>
function myFunction()
{

var element=document.getElementById("mainage[1]");
document.write(document.contains(element));
}
</script>

</body>
</html>


You can use length to see if your selector matched anything.

if (



这篇关于检查是否存在隐藏字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 21:16