我需要一些关于PHP版本的必需属性的帮助。 必填字段正常,但问题在于 oninvalid 元素,以便以HTML格式显示自定义文字。
这是HTML版本:
<select required="" oninvalid="this.setCustomValidity('Custom TXT!')">
这是我选择下拉框的PHP版本:
$options = $args['options'];
$product = $args['product'];
$attribute = $args['attribute'];
$name = $args['name'] ? $args['name'] : 'attribute_' . sanitize_title( $attribute );
$id = $args['id'] ? $args['id'] : sanitize_title( $attribute );
$class = $args['class'];
$show_option_none = $args['show_option_none'] ? true : false;
$show_option_none_text = $args['show_option_none'] ? $args['show_option_none'] : __( 'Choose an option', 'woocommerce' ); // We'll do our best to hide the placeholder, but we'll need to show something when resetting options.
if ( empty( $options ) && ! empty( $product ) && ! empty( $attribute ) ) {
$attributes = $product->get_variation_attributes();
$options = $attributes[ $attribute ];
}
$html = '<select required="" oninvalid="this.setCustomValidity('Custom TXT!')" id="' . esc_attr( $id ) . '" class="' . esc_attr( $class ) . '" name="' . esc_attr( $name ) . '" data-attribute_name="attribute_' . esc_attr( sanitize_title( $attribute ) ) . '"' . '" data-show_option_none="' . ( $show_option_none ? 'yes' : 'no' ) . '">';
$html .= '<option value="">' . esc_html( $show_option_none_text ) . '</option>';
有人可以帮我用这一行来制作自定义文字节目,现在它只给出了错误。谢谢!
$html = '<select required="" oninvalid="this.setCustomValidity('Custom TXT!')"
答案 0 :(得分:0)
嗯......这是我使用普通IDE而不是np ++ ...
的教训oninvalid="this.setCustomValidity(\'Custom TXT!\')"
关闭。