We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
match使用在select上不管用 如: <select name="symbol1_1"> <option value="usd">美元</option> <option value="eur">欧元</option> </select>
<select name="symbol1_1">
<option value="usd">美元</option>
<option value="eur">欧元</option>
</select>
<select name="symbol1_2" data-rule="组合:required;match(neq,#symbol1_1);> <option value="usd">美元</option> <option value="eur">欧元</option> </select>
<select name="symbol1_2" data-rule="组合:required;match(neq,#symbol1_1);>
The text was updated successfully, but these errors were encountered:
<select name="symbol1_2" data-rule="组合:required;match(neq, #symbol1_1);">
1、少了结束引号; 2、规则参数里面逗号后需要加空格
Sorry, something went wrong.
No branches or pull requests
match使用在select上不管用
如:
<select name="symbol1_1">
<option value="usd">美元</option>
<option value="eur">欧元</option>
</select>
<select name="symbol1_2" data-rule="组合:required;match(neq,#symbol1_1);>
<option value="usd">美元</option>
<option value="eur">欧元</option>
</select>
The text was updated successfully, but these errors were encountered: