图片标记中的ID失败

时间:2013-12-22 20:42:56

标签: php html key-value

尝试设置id = $x - 但失败了!

<img src='images/Rename.png' id='".$x."' title='Create new item' border=0 width='20px' height='20px' class='item_create_button'>

$x位于for(),因此以1

开头

用Firebug查看它 - 它显示id = 0(但它前面的行有id = 1

现在,尝试 - 只是为了测试它 - 将其设置为输入字段:

<input type=button id='".$x."' title='Create new item' border=0 width='20px' height='20px' class='item_create_button'>

它在Firebug中显示id = 1!?

为什么我不能将img标签中的id设置为任何东西!?

1 个答案:

答案 0 :(得分:1)

这是正确的语法

for ($x=0; $x<100; $x++) {
   echo "<input type=button id='".$x."' title='Create new item' border=0 width='20px' height='20px' class='item_create_button'>";
}