Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个动态文本字段,其 HTML 标记如下所示:
<INPUT type="text" name="txt[]" id ="txt[]"/>
我将如何获得总动态值并使用 Javascript 和 PHP 对其进行验证?
当您检查值以验证它时,必须有一些触发器,但是您可以使用 jQuery 来获取值.val
.val
$("form").on('submit', function (e) { if ($(this).find('[name^=txt]').val() == '') { e.preventDefault(); alert('empty'); } })