ctl 00 $内容占位符1 $位于asp.net

7fyelxc5  于 2022-12-15  发布在  .NET
关注(0)|答案(1)|浏览(177)

当我在像enter image description here这样的aspx文件中使用html标签时
它显示在Web上,但输入的名称为ctl00$ContentPlaceHolder1 $enter image description here
如何删除此ctl00$ContentPlaceHolder1$?

dldeef67

dldeef671#

只需将clientIDMode=“static”添加到相关控件中。
因此:

<input class="contain_data" runat="server" type="file" name="posting"
    id="posting" 
    clientidmode="static" />

完全不清楚为什么要使用“name”标记,因为这将由asp.net系统管理,但如果使用上面的clientidmode =“static”,则控制将不会更改。
因此,对于该控件的jQuery select,您可以使用

MyInputBtn = $('#posting')

相关问题