- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对处理 Javascript、JSON 和 Perl 的方式有些迷茫,而且大多数示例都是用 PHP 编写的,这对我没有帮助。
我有一个页面(称为 main.html),其中包含来自 MySQL 的数据,我可以选择按 ID 删除行。
然后我让 Javascript 将 id 发送到页面 apagar.html,这现在有点乱,因为我试图处理 JSON,但是使用 GET 它可以工作,并且缺少的是删除请求后的刷新。但我想在我的代码中引入 JSON 并使页面更加动态但不知道如何。
在我的 apagar.html 中,如果 url 中有任何 id,我只有要删除的代码。
我已阅读 IBM 系列(精通 Ajax):http://www.ibm.com/developerworks/web/library/wa-ajaxintro11.html?S_TACT=105AGX08&S_CMP=EDU
谢谢你的帮助,上面是我正在使用的javascript:
<script language="javascript" type="text/javascript">
var pedido = false; // pedido = request
try {
pedido = new XMLHttpRequest();
}
catch (failed) {
pedido = false
}
if (!pedido) {
alert("O seu browser não é suportado."); // Browser not supported
}
function Eliminar(rid) { // relativo a main.html & apagar.html
//alert("SK"); //debug
if ( confirm("Deseja realmente eliminar?") ) {
var url = "/back/apagar.html?rid=" + escape(rid);
/*POST*/
pedido.open("POST", url, true);
pedido.onreadystatechange = updatePage;
pedido.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
pedido.send( contacto.toJSONString() );
//pedido.open("GET", url, true);
//pedido.send(null);
}
return false;
}
以及 Mason apagar.html 页面
<%args>
$rid => ''
</%args>
<%once>
use lib '/var/www/projectox/';
use db::Conexao; #interacao com a DB
use DBI;
use Apache2::Cookie; #interacao com cookies
</%once>
<%init>
% # vê se existem cookies
my $cookies = Apache2::Cookie->fetch($r);
if(!$cookies){ #sem cookies é enviado para o login
$m->redirect('login.html');
}
if($rid) {
# vai eliminar os dados pelo valor do id ($rid)
#ligacao à DB
my $tomada = db::Conexao->Conexao();
my $sql = $tomada->prepare("Delete from Contactos where id=?") ||
die "Impossivel de realizar a operação: $!";
$sql->execute($rid) || die "Não foi possivel executar: $!";
#desliga da DB
$tomada->disconnect || warn "Não foi possivel terminar a ligação!";
</%init>
最佳答案
很抱歉让你们耽误了时间。我终于解决了我的问题:
在我的 Javascript(使用 JQuery)中我完成了:
$(document).ready(function() {
// relativo ao main.html
$("#over_tabela tr").mouseover(function() {
$(this).addClass("sobre_linha");
}).mouseout(function() {
$(this).removeClass("sobre_linha");
});
// this is to "delete" the row from the table of main.html file throw ajax and JSON
$('a.delete_link').click(function(e) {
e.preventDefault();
if (confirm('Tem a certeza?')) {
url = $(this).attr('href');
$.ajax({
type: "GET",
url: url,
dataType: "json",
success: function(msg) {
$('#linha_' + msg.id).hide("slow");
}
});
}
});
});
然后在我的 apagar.html 中:
<%args>
$rid => ''
</%args>
<%once>
use lib '/var/www/projectox/';
use db::Conexao; # module that interact with database
use DBI;
use Apache2::Cookie; #cookies, not the right way, gonna update to Session Cookies
</%once>
<%init>
# vê se existem cookies
my $cookies = Apache2::Cookie->fetch($r);
if(!$cookies) { #sem cookies é enviado para o login
$m->redirect('login.html');
}
if($rid) {
# vai eliminar os dados pelo valor do id ($rid)
#database connection
my $tomada = db::Conexao->Conexao();
my $sql = $tomada->prepare("Delete from Contactos where id=?") ||
die "Impossivel de realizar a operação: $!";
$sql->execute($rid) || die "Não foi possivel executar: $!"; # execute or die with a message
#disconnect from database or warn about problem
$tomada->disconnect || warn "Não foi possivel terminar a ligação!";
print qq{ { id : $rid } }; #JSON style, this was what made me go crazy... lol and in the end was soooooo easy as that
}
</%init>
最后在我的 main.html 中:
<%args>
$sair => 0
</%args>
<%once>
use lib '/var/www/projectox/';
use db::Conexao;
use DBI;
use Apache2::Cookie;
</%once>
<%init>
# vê se existem cookies
my $cookies = Apache2::Cookie->fetch($r);
if(!$cookies){ #without cookies user is redirect to login.html
$m->redirect('login.html');
}
if($sair){ # if he logout : cookie expire and user is sent to index.html
my $cookie = Apache2::Cookie->new($r,
-name => "CHOCO",
-value => "TWIX",
-expires=> '+0s'
);
$cookie->bake($r);
$m->redirect('../index.html');
}
my $tomada = db::Conexao->Conexao();
my $sql = $tomada->prepare("Select * from Contactos") || # select all from table Contactos or die..
die "Impossivel : $!";
$sql->execute() || die "Nao foi possivel executar: $!";
# Generate HTML here
print qq{
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="pt" xml:lang="pt">
<head>
<meta http-equiv="Content-Type" content="text/html"; charset="utf-8" />
<link rel="stylesheet" type="text/css" href="../shadowbox/shadowbox.css">
<link rel="stylesheet" href="../css/estilo.css" type="text/css" />
<script language="javascript" src="../js/jquery.js"></script>
<script language="javascript" src="../js/wii.js"></script>
<script type="text/javascript" src="../shadowbox/shadowbox.js"></script>
<script type="text/javascript">
Shadowbox.init({
language: "pt-PT",
players: ["html","iframe","qt"],
viewportPadding: 30,
overlayOpacity: 0.9,
overlayColor: "#9999ff"
});
</script>
</head>
<body>
<form id="logout" name="logout" action="" method="post" >
<p>
<input type="submit" id="sair" name="sair" value="Sair" />
</p>
</form>
Bem Vindo #USERNAME !
<table id="over_tabela" name="over_tabela" align="center" border="0" cellspacing="1" cellpadding="5">
<thead>
<tr>
<th>NOME</th><th>E-MAIL</th><th>MENSAGEM</th><th>OPÇÃO</th>
</tr>
</thead>
};
my @dados; # receive data from database
my $dados; # part of @dados, id -> $dados[0]; nome -> $dados[1] etc..
while ( @dados = $sql->fetchrow_array() ) { #data is sent in html table form
print qq{
<tbody>
<tr id="linha_$dados[0]">
<td>$dados[1]</td><td>$dados[2]</td><td>$dados[3]</td>
<td>
<a class="edit_link" href="/back/editar.html?rid=$dados[0]" rel="shadowbox;width=440;height=320">
<img src="../imagens/editar.png" width="24" height="24" border="0" title="Editar" />
</a>
<a class="delete_link" href="/back/apagar.html?rid=$dados[0]">
<img src="../imagens/eliminar.png" width="24" height="24" border="0" title="Apagar" />
</a>
</td>
</tr>
</tbody>
};
}
print qq {</table>
</body>
</html>}; #end of HTML
#disconnect from database
$tomada->disconnect || warn "Não foi possivel terminar a ligação: $!";
</%init>
关于ajax - 我如何使用 JSON 和 Perl (HTML::Mason) 通过 AJAX 创建动态网页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1687032/
这个问题与窗口处理或多个浏览器窗口的杂耍无关,而是关于在同一窗口中浏览 Web 应用程序的网页。我遇到这样的情况 1.我导航为屏幕 A->屏幕 x->屏幕 Y->屏幕 B 2.我需要捕获首次登录时屏幕
我有这个要求: The system will record the length of time the user displayed each page. 虽然在富客户端应用程序中微不足道,但我不
我在调试 JavaScript 网页时遇到问题。我遇到困难的地方是我标记 (...) 的地方。我收到未定义的错误。我是否将函数 countDown(start, Increment) 中的参数(即 s
需要一些帮助。我刚开始学习 HTML,今天一直在研究如何制作菜单,但在这样做时遇到了问题。 我似乎不知道如何在屏幕上居中显示菜单。 这就是我目前所拥有的; Home
我想通过单击按钮将小程序的任何参数发送到浏览器。 (HTML)。我知道按钮对象有一些方法,但不知道使用哪个。我怎样才能做到这一点?ps .: 我使用的是 jnlp 协议(protocol)。 类似于:
我应该使用Wikipedia的文章链接数据转储从组织的网站中提取代表性术语。 为此,我已经- 抓取并下载了该组织的网页。 (〜110,000) 创建了Wikipedia ID和术语/标题的字典。 (约
我的网页中包含 javascript 函数... function callFromAndroid(varName) { alert("call from android activated by
我想创建一个 Java 应用程序,允许用户导入网页并能够在程序中对其进行编辑。 导入网页将对其进行渲染,并且页面的组件(图像、文本等)将是可编辑或可拖动的,从而允许用户重新布局组件。 例如,用户可以加
当我们按下按钮时,我向 JFrame 添加了一个网页(网页在同一框架中打开)。效果很好。但我想向其中添加一个scrollPane,但是当我添加 JScrollPane jsp = new JScrol
我在使用 particles.js 时无法将图像居中。图像居中,但略微偏离中心。为什么要这样做,我如何才能将它居中? html particles.js demo CSS
我正在尝试在加载页面时播放音频,它应该非常简单但我无法完成。 问题是它没有播放,我尝试检查自动播放的状态(真/假),它说它在页面加载时播放,尽管它没有播放,还尝试制作一个将改变自动播放的功能状态为
我正在尝试显示用户从列表中选择的图像,但我在屏幕上看不到任何内容。 .container { position: relative; } .ce
这听起来有点奇怪,但我需要一些帮助,网页必须有一行必须包含三个部分,第一部分必须有 1 列的偏移量,并且部分之间的空间必须是 10px到目前为止,使用 Bootstrap 一切顺利。 现在第二行将有
这个问题在这里已经有了答案: Web and physical units (2 个答案) Div width in cm (inch) (6 个答案) 关闭 9 年前。
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我想将我的 IPython 笔记本的宽度设置为 2500 像素,并且我希望它左对齐。我该怎么做? 我使用这段代码来应用我自己的 CSS: from IPython.core.display impor
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 7 年前。 Improve this q
我在 Word 中制作了一份文档,希望人们在其中添加自己的姓名以及他们的教学经验。我已将其保存为网页并发布到此处: http://epicforum.net/TS ...但操作部分实际上就是这样: h
这个问题在这里已经有了答案: Execute JS code after pressing the spacebar (5 个答案) 关闭 4 年前。
我正在开发一个只有两个页面的网站。 1.登录 2.首页 我正在使用 Angular 框架。 app.config(['$routeProvider', function ($routeProvider
我是一名优秀的程序员,十分优秀!