Dreamweaver写HTML时报错请问这里哪里错了,一直找不到

代码是这样的 <div class="slidbox" style="background-image:url("images/slider_index_01.jpg")"> 我ulr自己本地的图片结果提示这一行有上述的错误,愁死我了:Special characters must be escaped:[<].

是你的双引号冲突了,style标签是使用双引号包裹的,url这里也是用双引号包裹的,url("images/slider_index_01.jpg") 把括号的双引号换成单引号就行了

特殊字符需要转义。
不一定是这一行,可能是上下行,截图完整一点看看,< 号看一下有没有多写或少写了

<div class="slidbox" style="background-image:url('images/slider_index_01.jpg')">

() 这个里边不加 ""。