我有一个用户添加行的表单,每行都有输入,用户键入一个值,然后在它旁边显示一个翻译值。查找通过javascript数组进行。
有关其工作原理的简要说明如下:https://jsfiddle.net/kc4fes2w/7/
在此示例中,每行只有一个用户输入值,如果数组中存在此类转换,则与该用户相关的描述输入值。 (在示例中,它只包含XXX和YYY)
如果在阵列中找不到任何用户输入的值,我想阻止提交表单。换句话说,如果desc
div曾经说过"没找到"那么我不希望用户能够提交表格。
这是我的尝试:
使用Javascript:
function checkform(fm) {
var desc = $("#desc");
if (desc.text().indexOf("not found") !== -1) {
alert('You have invalid value(s). Please correct this.');
}
}
HTML:
<input type="submit" onsubmit="return checkform(); event.preventDefault();" />
正如你在小提琴中看到的那样,这不起作用。
答案 0 :(得分:1)
如果您不希望表单提交通过,请返回function checkform() {
var desc = $("#desc");
if (desc.text().indexOf("not found") !== -1) {
alert('You have invalid value(s). Please correct this.');
return false;
}
}
<input type="submit" onclick="return checkform();" />
:
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
答案 1 :(得分:0)
你可以这样做!!
修改您的提交按钮,在开始时将其禁用 -
<input id="submit" type="submit" disabled onsubmit="return checkform(); event.preventDefault();"/>
然后您可以根据您的逻辑启用或禁用,如下所示 -
if (exists) {
$this.closest('tr').find('td').eq(1).html(lookup_arr[this.value])
$('#submit').prop('disabled', false);
} else {
$('#submit').prop('disabled', true);
$this.closest('tr').find('td').eq(1).html('not found')
}