0

这是我的 JavaScript。

function thisimg(id,recordid)
{
var newid = "addlink_"+id;
var countid = "count_"+id;
var url = "../updateclick.php";
$.post(url,{dbid:recordid},function(data) {  document.getElementById(countid).innerHTML = data; });
var url =document.getElementById(newid).value;
window.open (url,"mywindow","status=1");
}

这是我的 PHP 回声

echo "<div class='title box'  onclick='thisimg(".$counter.",".$row['id'].")'><div style='float:left'><img src='".$imgpath."' alt='SimCity Social $name' title='$caption' height='50' width='50' /></div> <div class='click' style='float:right;'><b>Clicks <br/> <div id='count_".$counter."'> ".$click." </div> <input type='hidden' id='addlink_".$counter."' value='".$app_link."' rel='nofollow'</b></div><div style='float:left; width:100px; overflow:hidden; white-space: pre;'> <b> ".$name."</b><br/>".$beforetime."</div></div>";

我想修改此代码以在标题框中添加复选框,并修改 JavaScript 自动函数以在新窗口中打开选中的标题框'$app_link' URL 10 秒并关闭它。每个复选框 URL 一个一个打开 10 秒。请给出一些建议或示例代码开始。

请帮忙。

谢谢你的阅读。。

4

1 回答 1

0

注意,你有一个标题和一个盒子类(同一个标签的两个不同的类),空格是html标签的类属性的分隔符。

这是一个复选框:

<input type="checkbox" id="foo" value="bar" />

创建您自己的复选框并将其放在另一个标签中,这是第一步。其他需求对我来说是无法理解的,但我想我可以给你有用的提示。

Use jQuery, that's the second step.

Use a class for your tag with the applink, I'll call this class "app-link" for now, this is the third step.

I assume that the parent of all your checkboxes in this issue will be of type of box and the jQuery code is here:

$('.box > input[type="checkbox"]').each(function(){
   if ($(this).prop("checked")
   {
      var url = $(this).parent().find(".app-link").val();
      //Do whatever you want with this URL...
   } 
});

Use the (untested) code above, this is the fourth step.

Finally you should make your window opening, this link might help you: http://www.webdeveloper.com/forum/showthread.php?t=169300

Best regards, Lajos Árpád.

于 2012-07-19T23:31:01.870 回答