问题标签 [parent]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
asp.net - 如何从 asp.net 中的用户控件中清除父响应内容?
我有一个页面,上面有 4 个不同的用户控件。在某个时候,我需要使用 javascript location.replace() 进行重定向,并且无法通过服务器进行重定向。它必须是客户端。
所以,我需要的是从用户控件调用父页面中的 Response.Clear() ,这样页面中就不会写入任何其他内容。我认为在当前配置中我不可能,因为我有其他 3 个用户控件可能会在页面中呈现,我无法控制它的顺序,因此无法保证在 Response.Clear 之后不会写入任何其他内容()。
你看反正做吗?
非常感谢!
jquery - 如果存在,如何删除父元素?
因此,有时,我的输出将如下所示:
其他时候,它看起来像这样:
我正在尝试编写某种“if”语句,如果标记中的第一个 p 元素围绕图像标签,它将拉取:
否则,它将拉动:
或者,我可以找到所有的 img 标签,如果它被包围
标签,删除那些,但我不确定哪个更好,或者如何做......
我尝试了以下方法,但它不起作用:
python - 当 Parent 关闭时关闭 Python
我有一个 Python 程序(PP),它通过 COM 加载另一个程序(AP),获取它的窗口句柄并将其设置为 PP 父级。
这很好用,只是我无法控制 AP 在左上角仍然有可用的 [X] 按钮。由于这是用户在完成程序后关闭的一个非常明显的地方,我尝试了这个,它让任务管理器中的 PP 运行,但不可见,除了通过任务管理器之外没有其他方法可以杀死它。关于如何处理这个问题的任何想法?我希望用户以这种方式关闭是相当普遍的。
谢谢!
jquery - jQuery 最接近我的列表的 ID
希望您能提供建议,我正在尝试找到最接近的 ID 或父 ID。我认为它可能更容易向您展示。
这是一些示例代码。
所以在这个例子中,如果我点击列表项 color-red 或 color-yellow 我想找出最接近的 id 的值,在这个例子中是 search
我尝试了多种方法,但似乎无法确定。
如果可以的话,希望有人可以建议并提前感谢您。
jquery - 仅选择同一元素内的单个元素 | jQuery 选择器
所以我有一个无序列表,列表中的每个项目都有一个按钮,可以用来切换评论文本区域。不幸的是,当您单击一个发表评论按钮时,我第一次尝试打开所有文本区域,然后我尝试使用它来确保只选择一个元素。这是代码:
这是我的jQuery代码
如您所见,我的可怜人试图到达 ACTUAL 元素的父元素,然后找到我们需要切换的元素不起作用:)
提前非常感谢!
c# - C# MDI Parent 通过单击 MDI Parent 背景获得焦点
当我单击窗体的背景时,我想将焦点设置到 MDI 父窗体。但是,我可以让它设置焦点的唯一方法是调整表单大小。
当您单击 MDI 父级时,我尝试使用鼠标单击事件、单击事件、按键事件等手动设置焦点,但这些事件均未触发。当您单击表单的背景时,是否有任何方法可以将焦点设置到 MDI 父级?
javascript - 如何引用文档对象
I'm trying to access the document object of a page that lives in an <iframe> from the host page. In other words, I have a page that has an <iframe> in it, and I want to use jQuery on that page (the parent page) to access the document object of that <iframe>.
Specifically, I'm trying to find the height of the <iframe>d document once its content is rendered (onload) so that I can then resize the <iframe> from the parent page to match the height of the <iframe>'s content exactly.
If it's important, this <iframe> is created on the host page using JavaScript, and is in the same domain as the parent page. I already use this type of code:
#xA;to populate the <iframe> with content, but I don't know the exact syntax for getting the <iframe>'s document object.
For some reason I'm finding a lot of ways to access the parent's document object from within an <iframe> (most with plain JavaScript), but not the other way around.
Thanks in advance for any help!