在移动设备中未点击链接

时间:2015-12-26 19:19:27

标签: javascript html5 css3 jquery-mobile samsung-mobile

我为我的玩家制作了一个“建议”按钮,您可以直观地查看here。它适用于我最好的朋友的iPhone,因为我没有现代手机,它适用于我的broswer的设备模式,但是没有列出那个似乎有问题的特定设备。使用android的用户报告它也在那里工作!

我正在使用jQuery mobile,当使用Chrome浏览器时,问题是在Samsung galaxy s3 neo中产生的。

HTML是:

$(window).load(function() {
    ...
    $("#search_btn").click(function(){
        alert("marievi leeeme!"); // that user can not even see this!
        var slot = 0;
        ...

和JS:

a

有什么想法吗?我没有线索。也许是因为我使用private void jButton7ActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: DefaultCategoryDataset dataset=new DefaultCategoryDataset(); dataset.setValue(80,"Marks","student1"); dataset.setValue(70,"Marks","student2"); dataset.setValue(60,"Marks","student3"); dataset.setValue(50,"Marks","student4"); JFreeChart chart=ChartFactory.createBarChart("student score","student name","marks",dataset,PlotOrientation.VERTICAL,false,true,false); CategoryPlot p=chart.getCategoryPlot(); p.setRangeGridlinePaint(Color.BLACK); ChartFrame frame=new ChartFrame("bar chart for student",chart); frame.setVisible(true); frame.setSize(450,350); } 标签而不是真正的按钮?

1 个答案:

答案 0 :(得分:0)

尝试:

$(document).ready(function(){
     var self = this;
     $("#search_btn").click(function(){
        self.alert("marievi leeeme!"); // that user can not even see this!
        var slot = 0;
     });
});