English 中文(简体)
不明白图象把我引向何方
原标题:Don t understand where the image redirects me
  • 时间:2012-05-26 11:13:21
  •  标签:
  • javascript

我试图做一个批量 带你到链接, 但这不是问题, 问题在于我试图从网站获取链接, 我不知道为什么我坏。 我更清楚地解释一下, 在网站上有图像, 这个图像带你到我想要的地方。 这是图像代码。 忘了饼干, 我只想要这个图像让你去的地方 。

<div id="x" class="votes" style="height:30px;">
<img src="images/image.png" id="y"></div>

下去,我们有这个密码:

<script>
("#y").click(function () {
  $.post("z.php",{id:100},function(exit){
    $("#x").html(exit);
  }
);
</script>

Ok, 问题是当我在网站上,例如www.h.com/i.php? id=100(我给你们看的代码是什么),

您的 SQL 语法有错误; 请检查与您的 MySQL 服务器版本相对应的手册, 以便在第1行附近使用正确的语法。

但如果你点击网络中的图像. png, 网络会做我试图做的 与urls...我不知道你是否理解我, 对不起我的英语和解释。

问题回答

无法交换 Get 和 POST 请求。 看起来像是 Get 请求 :

www.h.com/i.php?id=100

此外,您应该查看您的 z.php 。 它如何处理您的 SQL 查询有问题。 它可能是导致语法错误的打字错误。 很可能, 您错过了一条引号, 忘记了一条引号, 或者您打开和关闭的引号不匹配 。

是的,如果z.php对 Get 做出响应,您无法使用 POST 。假设z.php 对 Get 做出响应,jQuery s 装载功能更适合您, 因为您想要在 ajax 结果中弹出一个 div 。

尝试过,但尝试过以下:

<script>
("#y").click(function () {
    $("#x").load("z.php", {id:100});
  });
</script>

回应你的评论:

是否有办法在不点击图像的情况下做代码所做的事?

是的。 如果您想要在不单击用户的情况下执行操作, 您可以仅尝试此选项 :

<script>
$(function(){
    $("#x").load("z.php", {id:100});
});
</script>

现在我想我理解你对批量的问题了。 在批量编号中, 您可以在任何您喜欢的地方运行批量程序。 只要把批量编号的行/ 批次放在脚本标签中 。

<script>
  //... Your program comes here (batch)
</script>

但批次只能在资源/图像装入后运行。 这样您就可以在文件负荷完成后运行程序/批次, 像这样 。

<script>
  $(function() {
     //... Your program comes here (batch)
  });
</script>

要进一步了解这一点, Google 有关“ javascript document load” 或“ javascript on load” 的“ javascript ” 。 Jquery 赋予了一个功能,用 < code>$( 函数( ) { / * * * / }); < / code > 来检测上述文件的负荷 。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签