本文整理汇总了C++中HTMLDocument::Body方法的典型用法代码示例。如果您正苦于以下问题:C++ HTMLDocument::Body方法的具体用法?C++ HTMLDocument::Body怎么用?C++ HTMLDocument::Body使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HTMLDocument
的用法示例。
在下文中一共展示了HTMLDocument::Body方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: jhtml_input_blur
/**
* blur - this method removes the focus from this element
*
* params - none
* return - void
*/
JSBool jhtml_input_blur(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
HTMLElement *pElem = (HTMLElement *) jhutil_GetPrivate(cx, obj);
if (!pElem)
{
return JS_TRUE;
}
HTMLDocument *pDoc = (pElem)? pElem->GetDocument() : 0;
if (pDoc && pDoc->Body())
{
pDoc->Body()->Focus();
}
*rval = JSVAL_VOID;
return JS_TRUE;
}
示例2: jhtml_anchor_blur
/**
* blur - This method removes the focus from this element
*
* params - none;
* return - void;
*/
JSBool jhtml_anchor_blur(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
LOG_HTMLDOM("jhtml_anchor_blur\n");
if (JS_GetClass(obj) == &JSHtmlAnchorElement)
{
HTMLElement *pElem = (HTMLElement *) jhutil_GetPrivate(cx, obj);
if (!pElem)
{
return JS_TRUE;
}
HTMLDocument *pDoc = (pElem)? pElem->GetDocument() : 0;
if (pDoc && pDoc->Body())
{
pDoc->Body()->Focus();
}
}
*rval = JSVAL_VOID;
return JS_TRUE;
}