これが私の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 が 1 つずつ 10 秒間開きます。最初に提案またはサンプルコードを教えてください。
助けてください。
読んでくれてありがとう..