本文整理汇总了C++中HTMLOptionElement::appendChild方法的典型用法代码示例。如果您正苦于以下问题:C++ HTMLOptionElement::appendChild方法的具体用法?C++ HTMLOptionElement::appendChild怎么用?C++ HTMLOptionElement::appendChild使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HTMLOptionElement
的用法示例。
在下文中一共展示了HTMLOptionElement::appendChild方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: didAddUserAgentShadowRoot
void HTMLKeygenElement::didAddUserAgentShadowRoot(ShadowRoot& root) {
DEFINE_STATIC_LOCAL(AtomicString, keygenSelectPseudoId,
("-webkit-keygen-select"));
Vector<String> keys;
keys.reserveCapacity(2);
keys.append(
locale().queryString(WebLocalizedString::KeygenMenuHighGradeKeySize));
keys.append(
locale().queryString(WebLocalizedString::KeygenMenuMediumGradeKeySize));
// Create a select element with one option element for each key size.
HTMLSelectElement* select = HTMLSelectElement::create(document());
select->setShadowPseudoId(keygenSelectPseudoId);
for (const String& key : keys) {
HTMLOptionElement* option = HTMLOptionElement::create(document());
option->appendChild(Text::create(document(), key));
select->appendChild(option);
}
root.appendChild(select);
}
示例2: construct
JSObject* JSHTMLOptionElementConstructor::construct(ExecState* exec, const List& args)
{
int exception = 0;
RefPtr<Element> el(m_doc->createElement("option", exception));
HTMLOptionElement* opt = 0;
if (el) {
opt = static_cast<HTMLOptionElement*>(el.get());
int sz = args.size();
RefPtr<Text> text = m_doc->createTextNode("");
opt->appendChild(text, exception);
if (exception == 0 && sz > 0)
text->setData(args[0]->toString(exec), exception);
if (exception == 0 && sz > 1)
opt->setValue(args[1]->toString(exec));
if (exception == 0 && sz > 2)
opt->setDefaultSelected(args[2]->toBoolean(exec));
if (exception == 0 && sz > 3)
opt->setSelected(args[3]->toBoolean(exec));
}
setDOMException(exec, exception);
return static_cast<JSObject*>(toJS(exec, opt));
}