- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有大约 150 页 html,每个页面上有 4 个 div,具有类似的投资组合项目...我目前通过 jQuery 加载这些项目的内容,在每个项目 div 上使用自定义数据属性。我正在尝试使用 php 或 jquery 使此动态数据静态化,以便内容硬编码到每个页面的 html 中......该网站采用 html 格式,而不是 wordpress/php ...
代码如下:
var xmlData = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?><items xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><item><p_id>1_1</p_id><p_title>Sparrow</p_title><p_img>http://placehold.it/50x50/484848/FFFFFF&text=Sparrow</p_img><p_url>1_sparrow.html</p_url></item><item><p_id>1_2</p_id><p_title>Eagle</p_title><p_img>http://placehold.it/50x50/484848/FFFFFF&text=Eagle</p_img><p_url>1_eagle.html</p_url></item><item><p_id>1_3</p_id><p_title>Hen</p_title><p_img>http://placehold.it/50x50/484848/FFFFFF&text=Hen</p_img><p_url>1_hen.html</p_url></item><item><p_id>2_1</p_id><p_title>Green</p_title><p_img>http://placehold.it/50x50/484848/FFFFFF&text=Green</p_img><p_url>2_green.html</p_url></item><item><p_id>2_2</p_id><p_title>Blue</p_title><p_img>http://placehold.it/50x50/484848/FFFFFF&text=Blue</p_img><p_url>2_blue.html</p_url></item><item><p_id>2_3</p_id><p_title>Pink</p_title><p_img>http://placehold.it/50x50/484848/FFFFFF&text=Pink</p_img><p_url>2_pink.html</p_url></item><item><p_id>2_4</p_id><p_title>Purple</p_title><p_img>http://placehold.it/50x50/484848/FFFFFF&text=Purple</p_img><p_url>2_purple.html</p_url></item></items>';
$(document).ready(function(){
parse(xmlData);
});
function parse(xmlResponse){
$(xmlResponse).find("item").each(function() {
var pr_id = $(this).find("p_id").text();
var p_title = $(this).find("p_title").text();
var p_img = $(this).find("p_img").text();
var p_url = $(this).find("p_url").text();
$("a[data-prd_id='" + pr_id + "']").attr('href', p_url);
$("a[data-prd_id='" + pr_id + "'] img").attr('src', p_img);
$("a[data-prd_id='" + pr_id + "'] h2").text(p_title);
});
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div>
<div class="item">
<a class="item-anchor" data-prd_id="1_2" href="#">
<img class="image" src="../images/loading.png">
<h2 class="title">Loading...</h2>
</a>
</div>
<div class="item">
<a class="item-anchor" data-prd_id="2_2" href="#">
<img class="image" src="../images/loading.png">
<h2 class="title">Loading...</h2>
</a>
</div>
<div class="item">
<a class="item-anchor" data-prd_id="1_3" href="#">
<img class="image" src="../images/loading.png">
<h2 class="title">Loading...</h2>
</a>
</div>
<div class="item">
<a class="item-anchor" data-prd_id="2_4" href="#">
<img class="image" src="../images/loading.png">
<h2 class="title">Loading...</h2>
</a>
</div>
</div>
我了解 Simple PHP HTML DOM,并且已经使用它很多次将数据复制到 html 文件。这是我使用过的脚本文件夹中的示例代码。在此示例中,我将包含内容的 html 文件放置在 xampp 的/content
文件夹中,并且放置字符串 (_Item__Features__Content__HERE_
) 的文件是具有相同内容的 html 文件。名称而不是实际的网站页面,并保存在/website_files_html
文件夹中。最后,替换字符串后,新版本的html文件将保存在/extracted_html
文件夹中...
include('simple_html_dom.php');
$destdir = "extracted_html";
$oldMessage = "_Item__Features__Content__HERE_";
$website_files_html_dir = "website_files_html";
$dir = new DirectoryIterator("content_html");
foreach ($dir as $fileinfo)
{
if (!$fileinfo->isDot())
{
$file_name = basename($fileinfo);
$html = file_get_html("content_html/$file_name");
foreach($html->find('div[class=item_features]') as $e)
{
$str=file_get_contents("$website_files_html_dir/$file_name");
$str=str_replace($oldMessage, $e->innertext,$str);
file_put_contents("$destdir/$file_name", $str);
echo $file_name . " <b>Done!</b> </br>";
}
}
}
所以我的请求是:如何修改这段代码,让我将各自的xml内容放置在每个“item”div的属性(href、img-src、title)中,并将结果作为提取的文件夹中的html文件输出?
感谢您的帮助。
最佳答案
嗯,我明白了!必须搜索 XML 解析器。这是代码。
<?php
include('simple_html_dom.php');
$destdir = "extracted_html";
$dir = new DirectoryIterator("content_html");
foreach ($dir as $fileinfo)
{
if (!$fileinfo->isDot())
{
$file_name = basename($fileinfo);
$html = file_get_html("content_html/$file_name", NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL);
foreach($html->find('a[class=w-portfolio-item-anchor]') as $e)
{
$product_this_arr = array();
$data_id = $e->data_prd_id;
//echo $data_id . '<br>';
$product_this_arr = get_xml_data($data_id);
$e->href = $product_this_arr[0];
$e->find('img', 0)->src = $product_this_arr[1];
$e->find('h2', 0)->innertext = $product_this_arr[2];
$e->data_prd_id = "__attribute_Nulled_";
}
file_put_contents("$destdir/$file_name", $html);
echo $file_name . " <b>Done!</b> </br>";
}
}
// XML PARSER...
function get_xml_data($xml_id_i){
$product_xml = simplexml_load_file('xml/XML_products_info.xml');
$product_each_arr = array();
foreach ($product_xml as $product_each){
if($product_each->product_id == $xml_id_i){
$product_each_arr[0] = $product_each->product_url;
$product_each_arr[1] = $product_each->product_img;
$product_each_arr[2] = $product_each->product_title;
}
}
return $product_each_arr;
}
?>
关于javascript - 如何将节点内容从 xml 复制到硬编码的 html(动态到原始 html)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27184769/
算力时代,视频云需要怎样的 CPU? 在数据爆发式增长及算法日益精进的大背景下,属于「算力」的时代俨然到来。随着视频成为互联网流量的主角,日趋饱和的音视频场景渗透率、人类对“感官之限”的追
我正在使用 keras 开发深度网络。有一个激活“硬 sigmoid”。它的数学定义是什么? 我知道什么是 Sigmoid。有人在Quora上问了类似的问题:https://www.quora.com
我有一个不寻常的 SQL 问题,我不太确定如何最好地解释,所以请耐心等待。我有三张表,一张是志愿者组织的表,一张是用户的表,一张是用户详细信息的表。 #Table 1# ## Name Preside
我正在尝试使用名为 bigText 的 jquery 插件。一个很棒的用于创建 block 头的插件。如果您想将其与自定义字体一起使用,它会声明您需要 google webfont loader,这样
假设我有一张 table date,personid 1/1/2001 1 1/2/2001 3 1/3/2001 2 1/4/2001 2 1/5/2001 5 1/6/2001 5 1/7/200
下面是我要执行的 SQL。我想避免为此执行多个请求,我很确定这是可能的…… First table : products_categories (category_id, category_infos
我在 android studio 中重新设置了一些提交,并选择了硬重置类型。我失去了一个星期的工作。是否有希望撤销此操作?我正在使用 android studio,它有内置的 GUI 选项来执行所有
当我使用我的交叉工具链编译 C 代码时,链接器会打印出警告页面,说明我的可执行文件使用了硬 float ,但我的 libc 使用了软 float 。有什么区别? 最佳答案 硬浮点使用片上浮点单元。软
linux系统有arm64,arm架构armv8-a。如何知道 debian 是运行硬浮点还是软浮点? 最佳答案 符合 AAPCS64, GNU GCC for armv8 仅提供硬浮点 aarch6
我正在开发 cortex-m3 的微内核。我创建了一个故意导致错误的小型测试应用程序。 现在我不确定如何从故障中返回。我知道堆栈可能需要使用不同函数的地址进行更新。我也知道在某些情况下从错误返回可能是
硬/软 限制是什么意思? 核心文件大小的差异例如: ulimit -Sc 1024 与 ulimit -Hc 1024 我通常在运行二进制文件之前将脚本放入 ulimit -c unlimited。
我想在 Java 中加载一个 MSCAPI keystore 并检查 MY 存储中的可用证书。但是,这些证书的一些 key 驻留在硬件 token 上,并且弹出窗口会在加载期间询问 token 。 有
是的,这是一个有点棘手的问题; 一个数组(没有副本),而不是任何奇数数组。让我解释一下,让我们从这里开始; $a = array ( 'one' => 1, 'two' => 2, 'three' =
我需要在运行 Ubuntu 12.04 的 BeagleBoard xM rev C 上运行一个使用 ftd2xx 的程序。我正在尝试使用提供的 ARM 库 libftd2xx.so here . l
我是一名优秀的程序员,十分优秀!