问题标签 [createelement]

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.

0 投票
3 回答
4701 浏览

javascript - 点击事件在 iPad/iPhone/Android 上对动态构建的元素不起作用

这就是我构建 DOM 的方式:

所以...openslider(elem)功能在所有浏览器中都可以正常工作,除了移动设备(Android 手机、iPhone、iPad 等...)。有没有其他方法可以将事件绑定到尚未创建的元素,或者我在这里做错了什么?

现场示例- 单击联系人以获取项目,然后尝试单击其中一个项目以展开它。单击关于将带您回到主页。那仍然很乱​​,但是该网站仍处于早期开发阶段...

0 投票
0 回答
248 浏览

javascript - 点击事件在移动设备上无法使用 JavaScript 动态构建元素

这就是我构建 DOM 的方式:

openslider(elem)功能在除移动设备(Android 手机、iPhone、iPad 等)之外的所有浏览器中都能正常工作。有没有其他方法可以将事件绑定到尚未创建的元素,或者我在这里做错了什么?

在写你的答案之前一定要看看这个链接... js/jquery 速度测试

0 投票
3 回答
352 浏览

javascript - Javascript创建元素问题

当我像示例 A 那样创建对象时,它不会应用任何属性(id、class 等...)。正在创建元素,但没有属性。选项 B 工作正常,但根据这个Spped 测试它慢了 25%。如何使用选项 A 应用属性?毕竟有可能吗?感谢所有聪明的答案!

A:

乙:

0 投票
1 回答
110 浏览

html - createElement 唯一标识符

我正在用 Html 建立一个小画廊,但遇到了一些麻烦。我有一个循环,每次迭代时都会for创建一个。img问题是,一旦我生成了所有图像并尝试将唯一变量传递给显示单击图像的其他函数,我就无法传递唯一值。

我可能没有很好地解释它,但如果你运行它,你就会明白我的意思。任何帮助弄清楚我如何获得每个缩略图的唯一标识符将不胜感激。

下面是代码。

由于我是新会员,无法上传图片,抱歉。

0 投票
2 回答
2168 浏览

javascript - 如何通过 createElement() 的鼠标悬停来更改 window.status

我希望通过覆盖 createElement() 创建的链接来更改窗口状态,但它似乎不起作用(我正在尝试使用 Chrome)。

谷歌似乎有可能通过他的索引中的重定向链接做到这一点。通过将鼠标悬停在他的索引中的链接,您应该在窗口状态中看到一个不是真正点击的链接(谷歌重定向)的 href。所以,请不要告诉我浏览器出于安全原因阻止了这个,并帮助我做到这一点:-)

我试过以下

但是窗口状态只显示 href 值。

0 投票
1 回答
1509 浏览

javascript - 父级与 iframe 中的 createElement

我有一个模块化网页,每个模块都是可以与父页面交互的 iframe。特别是 iframe 向父级添加新元素(导航、选项卡等)。所有页面都在同一个域中。

到目前为止,我一直在 iframe 中使用这种模式:

我最近突然想到,因为 newDiv 将附加到父级,所以这样做更有意义:

我的问题:新元素是用 document.createElement 还是 parent.document.createElement 创建的有什么区别吗?

0 投票
1 回答
456 浏览

javascript - 将事件侦听器添加到从数组创建的按钮

我正在使用从我的数据库中获取的“标签”创建按钮。我想为每个按钮添加鼠标事件侦听器。但是,侦听器似乎只对最后创建的按钮起作用。有任何想法吗?谢谢。

0 投票
0 回答
602 浏览

php - php domdocument createelement method automatically changing special characters

I'm creating an XML according to a user input. suppose the user entered one of the XML special characters, i want to replace it to it's XML representation. Now, suppose:

And this is my code:

I want the value to appear inside my XML like the value of $value. any suggestions?

0 投票
1 回答
71 浏览

html - 唯一目的是创建一个独特的新 html 标签语义

我刚刚被介绍了 createElement() 方法。我很高兴将它用于高度专业化的玩家的语义目的。

我真的不想要关于我应该或不应该这样做的意见。我想知道的是这种方法的其他用途。

0 投票
1 回答
1431 浏览

javascript - javascript创建html for svg

i want to do this:

<object type="image/svg+xml" id="tornado5" data="bitmaps/tornado2.svg">
</object>

but i want to do it in javascript dynamically... i tried:

i want to do this:

but i want to do it in javascript dynamically... i tried:

the top html way can call the 3-line-js-color-mod at bottom and it will mod the color of the svg. But if i load the svg the js way, the svg loads, but the color mod wont work. (you can't mod the contentDocument thru an img, only thru an object i'm told).

question 11374059 asks a similar question and he was told to use img. No good here.


Check your server logs and see if there is an error related to the require_once('config.php') in Google_Client.php (If the file wasn't found, the script should have stopped).

When you do your require_once('Google_Client.php'), the following code is executed from that file. After you do your require, $apiConfig should be visible to your script.

Note that you do not touch config.php. If you need to override anything in there, you create local_config.php.

From my system with PHP 5.3 I used this script. The script as show below throws no errors. Unsetting the $apiConfig replicates your error.