我正在尝试检查所有链接并更改断开链接字段的背景颜色。这是我的功能
function CheckLinks(){
$('#new_post_links_table tbody>tr').find("input").each(function() {
UrlExists($(this).val(), function(status){
if(status === 404){
$(this).css('background-color','#FC0');
}
}); });}
输入字段如下所示:
<table id="new_post_links_table">
...
<td><input type="text" name="mp3_link[]"/></td>
<td><input type="text" name="mp4_link[]"/></td>
</tr>
</tbody>
</table>
由于某种原因,css 不适用。
注意:我的 CheckLinks 功能确实有效,但$(this).css...
部分除外。(火虫)
注意:行是动态添加的
编辑:这是功能:
function UrlExists(url, cb){
jQuery.ajax({
url: url,
dataType: 'text',
type: 'GET',
complete: function(xhr){
if(typeof cb === 'function')
cb.apply(this, [xhr.status]);
}
});
}