0

这是场景,我有这个表单 HTML

<form class="mainForm" name="eform" id="eform" action="/itg/sc_cust_maint_pkg.cust_dml"         method="get">
<div id="tab1" class="tab_content">
<div class="rowElem noborder"><label>Customer ID:</label>
<div class="formRight240">
<input type="text" name="p_cust_id_c" id="req" class="validate[required,maxSize[30]]"/>
</div></span><div class="fix"></div>

我要做的是验证所需的输入,并在标签上添加星号,工作模式是使用我们现有的解决问题,所以我必须使用这个找到解决方案。百万问题是,如何使用该类验证是否需要 p_cust_id_c,一旦这样做,然后在标签上添加一个星号。

4

1 回答 1

0

获取元素,检查输入类是否包含字符串required,然后在标签中添加一些内容?

var form  = document.getElementById('eform');
var input = document.getElementById('req');
var label = form.getElementsByTagName('label')[0];

if (input.className.indexOf('required') != -1) {
    label.innerHTML = label.innerHTML + '***';
}

小提琴

于 2013-09-19T21:20:27.973 回答